Interface ImportOperation.Problem

Enclosing interface:
ImportOperation

public static interface ImportOperation.Problem
Bundles a description, the store type, and the node id of a problematic element.
Since:
5.1.102
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotNull String
    The problem description.
    long
    The node id of the problematic element.
    The store type of the problematic element.
  • Method Details

    • getStoreType

      @NotNull Store.Type getStoreType()
      The store type of the problematic element.
      Returns:
      Store type.
      Since:
      5.1.102
    • getNodeId

      long getNodeId()
      The node id of the problematic element.
      Returns:
      Node id.
      Since:
      5.1.102
    • getMessage

      @NotNull @NotNull String getMessage()
      The problem description.
      Returns:
      Problem description.
      Since:
      5.1.102