public class ImportResults
extends java.lang.Object
Constructor and Description |
---|
ImportResults(java.lang.Long logId,
java.util.List<ImportObject> createdObjects,
java.util.List<ImportObject> updatedObjects,
java.util.List<ImportObject> failedObjects)
Deprecated.
This constructor will be removed in a future release. Use
ImportResults(Long, List, List, List, List, List) instead |
ImportResults(java.lang.Long logId,
java.util.List<ImportObject> createdObjects,
java.util.List<ImportObject> updatedObjects,
java.util.List<ImportObject> failedObjects,
java.util.List<ImportObject> notChangedObjects,
java.util.List<ImportObject> conflictedObjects) |
Modifier and Type | Method and Description |
---|---|
java.util.List<ImportObject> |
getConflictedObjects()
A conflict means that changes were made in both the source (package) and target systems.
|
java.util.List<ImportObject> |
getCreatedObjects()
On import, returns the list of objects that were created.
|
java.util.List<ImportObject> |
getFailedObjects()
On import, returns the list of objects that have failed to import, along with the list of objects already
in the target system which are now in a failure state as a result of this import.
|
java.lang.Long |
getLogDocumentId()
Retrieves the document ID of the detailed import log file.
|
java.util.List<ImportObject> |
getNotChangedObjects()
On import, returns the list of objects that were skipped because no changes were detected.
|
java.util.List<ImportObject> |
getUpdatedObjects()
On import, returns the list of objects that were updated.
|
java.lang.String |
toString() |
@Deprecated public ImportResults(java.lang.Long logId, java.util.List<ImportObject> createdObjects, java.util.List<ImportObject> updatedObjects, java.util.List<ImportObject> failedObjects)
ImportResults(Long, List, List, List, List, List)
insteadpublic ImportResults(java.lang.Long logId, java.util.List<ImportObject> createdObjects, java.util.List<ImportObject> updatedObjects, java.util.List<ImportObject> failedObjects, java.util.List<ImportObject> notChangedObjects, java.util.List<ImportObject> conflictedObjects)
public java.lang.Long getLogDocumentId()
public java.util.List<ImportObject> getCreatedObjects()
Collections.unmodifiableList(List)
in order to return an unmodifiable list.public java.util.List<ImportObject> getUpdatedObjects()
Collections.unmodifiableList(List)
in order to return an unmodifiable list.public java.util.List<ImportObject> getNotChangedObjects()
Collections.unmodifiableList(List)
in order to return an unmodifiable list.public java.util.List<ImportObject> getConflictedObjects()
Collections.unmodifiableList(List)
in order to return an unmodifiable list.getUpdatedObjects()
where the object in the import package
overwrote or would have overwritten a change on the target system.public java.util.List<ImportObject> getFailedObjects()
Collections.unmodifiableList(List)
in
order to return an unmodifiable list.public java.lang.String toString()
toString
in class java.lang.Object
Copyright © 2003-2024 Appian Corporation. All Rights Reserved.