Uses of Interface
com.attivio.sdk.server.component.Stage
-
Packages that use Stage Package Description com.attivio.sdk.server.component Interfaces necessary to write components for the AIE system.com.attivio.sdk.server.component.ingest Interfaces for all ingest related transformers and associated dependencies of those transformers.com.attivio.sdk.server.component.query Interfaces for all query and response related transformers and associated dependencies of those transformers.com.attivio.sdk.server.component.routing Interfaces for all transformers that route messages or documents to other workflows in the system.com.attivio.sdk.test -
-
Uses of Stage in com.attivio.sdk.server.component
Subinterfaces of Stage in com.attivio.sdk.server.component Modifier and Type Interface Description interface
MessageHandlingWorkflowStage
AStage
that is capable of processing aPlatformMessage
.interface
PlatformService
Interface for services that need to live in the admin workflow. -
Uses of Stage in com.attivio.sdk.server.component.ingest
Subinterfaces of Stage in com.attivio.sdk.server.component.ingest Modifier and Type Interface Description interface
BaseDocumentTransformer
Base interface for all other transformer interfaces that work on documents.interface
DocumentModifyingTransformer
Interface for transformers that work on the entire document.interface
FieldValueCreatingTransformer<T>
Interface for document transformers that create a new field value based on an existing field's value.interface
FieldValueModifyingTransformer
Interface for document transformers that modify and existing field value in place.interface
MultiOutputDocumentTransformer
Interface for document transformers that create multiple output documents or messages for each input document. -
Uses of Stage in com.attivio.sdk.server.component.query
Subinterfaces of Stage in com.attivio.sdk.server.component.query Modifier and Type Interface Description interface
QueryTransformer
Base interface for components that work on aQueryRequest
from a client.interface
ResponseTransformer
Base interface for components that work on aQueryResponse
before being sent back to a client. -
Uses of Stage in com.attivio.sdk.server.component.routing
Subinterfaces of Stage in com.attivio.sdk.server.component.routing Modifier and Type Interface Description interface
BaseRoutingComponent<T>
Indicates that the implementor returns values to populate aWorkflowQueue
.interface
DocumentRoutingComponent
Interface for components that provide basic routing features inside an AIE workflow ofIngestDocument
s.interface
MessageRoutingComponent
Interface for components that provide basic routing features inside an AIE workflow ofPlatformMessage
s. -
Uses of Stage in com.attivio.sdk.test
Methods in com.attivio.sdk.test with parameters of type Stage Modifier and Type Method Description static void
SdkTestUtils. startTransformer(Stage trans)
Starts the transformer, configuring is a much as possible in the test environment.static void
SdkTestUtils. startTransformer(Stage trans, Schema schema)
static void
SdkTestUtils. startTransformer(Stage trans, ProcessingFeedbackHandler handler)
static void
SdkTestUtils. startTransformer(Stage trans, SchemaUtil schemaUtil)
static void
SdkTestUtils. startTransformer(Stage trans, SchemaUtil schemaUtil, ProcessingFeedbackHandler feedbackHandler)
static void
SdkTestUtils. startTransformer(Stage trans, SchemaUtil schemaUtil, ProcessingFeedbackHandler feedbackHandler, AieLogger logger)
*****************************************************************************************************************
-