Interface PluggableImportOfBizEntityHandler
- All Superinterfaces:
ImportOfBizEntityHandler,PluggableImportHandler
- All Known Implementing Classes:
ReferenceOfBizImport,ReferenceOfBizPreImport
@ExperimentalSpi
public interface PluggableImportOfBizEntityHandler
extends PluggableImportHandler, ImportOfBizEntityHandler
Defines a handler class that will be able to perform some operation given an entity name and the entities
attributes.
- Since:
- v7.0
-
Method Summary
Modifier and TypeMethodDescriptionvoidProvides the implementation an opportunity to perform some action when the document is finished being read.booleanhandlesEntity(String entityName) Return true if this handler should process the entity.voidProvides the implementation an opportunity to perform some action when the document is starting to be read.Methods inherited from interface com.atlassian.jira.imports.project.handler.ImportOfBizEntityHandler
handleEntityMethods inherited from interface com.atlassian.jira.imports.project.handler.PluggableImportHandler
setBackupProject, setBackupSystemInformation, setProjectImportMapper, setProjectImportResults
-
Method Details
-
startDocument
void startDocument()Provides the implementation an opportunity to perform some action when the document is starting to be read.- Specified by:
startDocumentin interfaceImportOfBizEntityHandler
-
endDocument
void endDocument()Provides the implementation an opportunity to perform some action when the document is finished being read.- Specified by:
endDocumentin interfaceImportOfBizEntityHandler
-
handlesEntity
Return true if this handler should process the entity.- Parameters:
entityName- Entities to process.
-