Interface ImportOperation.Result

Enclosing interface:
ImportOperation

public static interface ImportOperation.Result
Container providing access to the result of the import operation.
Since:
5.1.42
  • Method Details

    • getCreatedElements

      @NotNull @NotNull Set<BasicElementInfo> getCreatedElements()
      Provides the set of newly created elements.
      Returns:
      Set of new elements.
      Since:
      5.1.42
    • getUpdatedElements

      @NotNull @NotNull Set<BasicElementInfo> getUpdatedElements()
      Provides the set of updated elements.
      Returns:
      Set of updated elements.
      Since:
      5.1.42
    • getDeletedElements

      @NotNull @NotNull Set<BasicElementInfo> getDeletedElements()
      Provides the set of deleted elements.
      Returns:
      Set of deleted elements.
      Since:
      5.1.42
    • getLostAndFoundElements

      @NotNull @NotNull Set<BasicElementInfo> getLostAndFoundElements()
      Provides the set of elements being moved to the lost and found folder instead of being deleted.
      Returns:
      Set of moved elements.
      Since:
      5.1.42
    • getMovedElements

      @NotNull @NotNull Set<BasicElementInfo> getMovedElements()
      Provides the set of moved elements.
      Returns:
      Set of moved elements.
      Since:
      5.1.42
    • getCreatedEntities

      @NotNull @NotNull Set<BasicEntityInfo> getCreatedEntities()
      Provides the set of newly created entities.
      Returns:
      Set of created entities.
      Since:
      5.1.42
    • getUpdatedEntities

      @NotNull @NotNull Set<BasicEntityInfo> getUpdatedEntities()
      Provides the set of updated entities.
      Returns:
      Set of updated entities.
      Since:
      5.2.1403
    • getModifiedProjectProperties

      @NotNull @NotNull EnumSet<PropertiesTransportOptions.ProjectPropertyType> getModifiedProjectProperties()
      Provides the EnumSet of modified project properties. Project properties are referred to be modifiedif they were created or updated during the import.
      Returns:
      An EnumSet of modified project properties.
      Since:
      5.2.412
    • getProblems

      @NotNull @NotNull List<ImportOperation.Problem> getProblems()
      Provide a list of problems which occurred during import.
      Returns:
      A list containing problems.
      Since:
      5.1.102