Interface ExportInfo
- All Known Subinterfaces:
ElementExportInfo
,EntityTypeExportInfo
,FsMetaExportInfo
,PropertyTypeExportInfo
public interface ExportInfo
This interface represents a single changed element during the
ExportOperation
. The reason for a change
can be creation, updates, deletions or movement. The types can be:
- Since:
- 5.2.1403
- See Also:
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescription@NotNull Set<ExportInfoFileHandle>
Get the detailed information on created file handles.@NotNull Set<ExportInfoFileHandle>
Get the detailed information on deleted file handles.@NotNull Collection<Pair<ExportInfoFileHandle,
ExportInfoFileHandle>> Get the detailed information on moved file handles.getName()
Returns the name of this export info object.@NotNull ExportStatus
Retrieve the currentexport status
of thisExportInfo
.@NotNull ExportInfo.Type
getType()
Retrieve the currenttype
of thisExportInfo
.@NotNull Set<ExportInfoFileHandle>
Get the detailed information on updated file handles.
-
Method Details
-
getType
Retrieve the currenttype
of thisExportInfo
.- Returns:
- the
type
of this element - Since:
- 5.2.1403
-
getName
String getName()Returns the name of this export info object.- Returns:
- the name
- Since:
- 5.2.1403
-
getStatus
Retrieve the currentexport status
of thisExportInfo
.- Returns:
- the
export status
of this element - Since:
- 5.2.1403
-
getCreatedFileHandles
Get the detailed information on created file handles.- Returns:
- The created files.
- Since:
- 5.2.1403
- See Also:
-
getUpdatedFileHandles
Get the detailed information on updated file handles.- Returns:
- The updated files.
- Since:
- 5.2.1403
- See Also:
-
getDeletedFileHandles
Get the detailed information on deleted file handles.- Returns:
- The deleted files.
- Since:
- 5.2.1403
- See Also:
-
getMovedFileHandles
Get the detailed information on moved file handles. Each element of the returnedcollection
is apair
ofExportInfoFileHandles
. The key of apair
is always the handle of the file before the move operation (at its original location) and the value of the pair is always the handle of the file after the move operation (at its current location).- Returns:
- The collection of moved files.
- Since:
- 5.2.1403
-