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 Summary
Modifier and TypeMethodDescription@NotNull Set<BasicElementInfo>
Provides the set of newly created elements.@NotNull Set<BasicEntityInfo>
Provides the set of newly created entities.@NotNull Set<BasicElementInfo>
Provides the set of deleted elements.@NotNull Set<BasicElementInfo>
Provides the set of elements being moved to the lost and found folder instead of being deleted.Provides theEnumSet
of modified project properties.@NotNull Set<BasicElementInfo>
Provides the set of moved elements.@NotNull List<ImportOperation.Problem>
Provide a list of problems which occurred during import.@NotNull Set<BasicElementInfo>
Provides the set of updated elements.@NotNull Set<BasicEntityInfo>
Provides the set of updated entities.
-
Method Details
-
getCreatedElements
Provides the set of newly created elements.- Returns:
- Set of new elements.
- Since:
- 5.1.42
-
getUpdatedElements
Provides the set of updated elements.- Returns:
- Set of updated elements.
- Since:
- 5.1.42
-
getDeletedElements
Provides the set of deleted elements.- Returns:
- Set of deleted elements.
- Since:
- 5.1.42
-
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
Provides the set of moved elements.- Returns:
- Set of moved elements.
- Since:
- 5.1.42
-
getCreatedEntities
Provides the set of newly created entities.- Returns:
- Set of created entities.
- Since:
- 5.1.42
-
getUpdatedEntities
Provides the set of updated entities.- Returns:
- Set of updated entities.
- Since:
- 5.2.1403
-
getModifiedProjectProperties
@NotNull @NotNull EnumSet<PropertiesTransportOptions.ProjectPropertyType> getModifiedProjectProperties()Provides theEnumSet
of modified project properties. Project properties are referred to be modified if they were created or updated during the import.- Returns:
- An
EnumSet
of modified project properties. - Since:
- 5.2.412
-
getProblems
Provide a list of problems which occurred during import.- Returns:
- A list containing problems.
- Since:
- 5.1.102
-