Interface DocumentModifyingTransformer
-
- All Superinterfaces:
BaseDocumentTransformer
,Stage
public interface DocumentModifyingTransformer extends BaseDocumentTransformer
Interface for transformers that work on the entire document.Please refer to the
com.attivio.sdk.server.component.configuration
andcom.attivio.sdk.server.component.lifecycle
packages for mix-in interfaces that may be appropriate to implement along with this interface.- See Also:
ProvidesProcessingFeedback
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
processDocument(IngestDocument doc)
Processes a singleIngestDocument
.
-
-
-
Method Detail
-
processDocument
boolean processDocument(IngestDocument doc) throws AttivioException
Processes a singleIngestDocument
.- Parameters:
doc
- the Attivio document to process- Returns:
- true to continue processing the document, false to drop it
- Throws:
AttivioException
-
-