Package org.ametys.plugins.contentio.in
Class ContentImportManager.ImportResult
java.lang.Object
org.ametys.plugins.contentio.in.ContentImportManager.ImportResult
- Enclosing class:
 - ContentImportManager
 
Class representing a content import result.
- 
Field Summary
FieldsModifier and TypeFieldDescriptionThe list of imported content IDs.protected booleanIf an importer supporting the file has been found. - 
Constructor Summary
ConstructorsConstructorDescriptionImportResult(boolean importerFound) Build an ImportResult.ImportResult(Collection<String> importedContentIds) Build an ImportResult. - 
Method Summary
Modifier and TypeMethodDescriptionGet the importedContentIds.booleanGet the importerFound.voidsetImportedContentIds(Collection<String> importedContentIds) Set the importedContentIds.voidsetImporterFound(boolean importerFound) Set the importerFound. 
- 
Field Details
- 
_importerFound
If an importer supporting the file has been found. - 
_importedContentIds
The list of imported content IDs. 
 - 
 - 
Constructor Details
- 
ImportResult
Build an ImportResult.- Parameters:
 importerFound- true if an importer was found, false otherwise.
 - 
ImportResult
Build an ImportResult.- Parameters:
 importedContentIds- the imported content IDs.
 
 - 
 - 
Method Details
- 
isImporterFound
Get the importerFound.- Returns:
 - the importerFound
 
 - 
setImporterFound
Set the importerFound.- Parameters:
 importerFound- the importerFound to set
 - 
getImportedContentIds
Get the importedContentIds.- Returns:
 - the importedContentIds
 
 - 
setImportedContentIds
Set the importedContentIds.- Parameters:
 importedContentIds- the importedContentIds to set
 
 -