Interface ComposeLinkHandler<T>
public interface ComposeLinkHandler<T>
Handles linking composition.
-
Method Summary
Modifier and TypeMethodDescriptiongetFlowName(T flowType) Obtains the flow name for the given flow type.default voidhandleExtraConfiguredFlow(String flowName, String handlerName) Handles an extra configured flow.default voidhandleNoHandlingFunction(T flowType, String handlerName) Handles the case where there is no handling function.default voidhandleNonConfiguredFlow(T flowType) Handles a non-configured flow.voidlink(T flowType, OfficeSectionInput handler) Links the flow type to theOfficeSectionInput.
-
Method Details
-
getFlowName
Obtains the flow name for the given flow type.- Parameters:
flowType- Flow type.- Returns:
- Flow name.
-
link
Links the flow type to theOfficeSectionInput.- Parameters:
flowType- Flow type.handler-OfficeSectionInputhandler.
-
handleNonConfiguredFlow
Handles a non-configured flow.- Parameters:
flowType- Flow type.
-
handleNoHandlingFunction
Handles the case where there is no handling function.- Parameters:
flowType- Flow type.handlerName- Handler name.
-
handleExtraConfiguredFlow
Handles an extra configured flow.- Parameters:
flowName- Flow name.handlerName- Handler name.
-