Interface ProcedureArchitect<S>
-
public interface ProcedureArchitect<S>Builds theProcedureinstances.- Author:
- Daniel Sagenschneider
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringINPUT_NAMESectionInputname to invoke theProcedure.static java.lang.StringNEXT_OUTPUT_NAMESectionOutputname for nextFlow.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SaddProcedure(java.lang.String sectionName, java.lang.String resource, java.lang.String sourceName, java.lang.String procedureName, boolean isNext, PropertyList properties)Adds aProcedure.
-
-
-
Field Detail
-
INPUT_NAME
static final java.lang.String INPUT_NAME
SectionInputname to invoke theProcedure.- See Also:
- Constant Field Values
-
NEXT_OUTPUT_NAME
static final java.lang.String NEXT_OUTPUT_NAME
SectionOutputname for nextFlow.- See Also:
- Constant Field Values
-
-
Method Detail
-
addProcedure
S addProcedure(java.lang.String sectionName, java.lang.String resource, java.lang.String sourceName, java.lang.String procedureName, boolean isNext, PropertyList properties)
Adds aProcedure.- Parameters:
sectionName- Name to uniquely identify the use of theProcedure. It is possible to configure the sameProcedure, so need to name them each uniquely.resource- Resource.sourceName-ProcedureSourcename.procedureName- Name ofProcedureto be provided toProcedureSource.isNext- Indicates if nextFlowconfigured.properties-PropertyListfor extra configuration.- Returns:
OfficeSection/SubSectionfor theProcedure.
-
-