Interface ProcedureArchitect<S>
public interface ProcedureArchitect<S>
Builds the
Procedure instances.- Author:
- Daniel Sagenschneider
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringSectionInputname to invoke theProcedure.static final StringSectionOutputname for nextFlow. -
Method Summary
Modifier and TypeMethodDescriptionaddProcedure(String sectionName, String resource, String sourceName, String procedureName, boolean isNext, PropertyList properties) Adds aProcedure.
-
Field Details
-
INPUT_NAME
SectionInputname to invoke theProcedure.- See Also:
-
NEXT_OUTPUT_NAME
SectionOutputname for nextFlow.- See Also:
-
-
Method Details
-
addProcedure
S addProcedure(String sectionName, String resource, String sourceName, 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.
-