Interface ComposeLinkHandler<T>


public interface ComposeLinkHandler<T>
Handles linking composition.
  • Method Details

    • getFlowName

      String getFlowName(T flowType)
      Obtains the flow name for the given flow type.
      Parameters:
      flowType - Flow type.
      Returns:
      Flow name.
    • link

      void link(T flowType, OfficeSectionInput handler)
      Links the flow type to the OfficeSectionInput.
      Parameters:
      flowType - Flow type.
      handler - OfficeSectionInput handler.
    • handleNonConfiguredFlow

      default void handleNonConfiguredFlow(T flowType)
      Handles a non-configured flow.
      Parameters:
      flowType - Flow type.
    • handleNoHandlingFunction

      default void handleNoHandlingFunction(T flowType, String handlerName)
      Handles the case where there is no handling function.
      Parameters:
      flowType - Flow type.
      handlerName - Handler name.
    • handleExtraConfiguredFlow

      default void handleExtraConfiguredFlow(String flowName, String handlerName)
      Handles an extra configured flow.
      Parameters:
      flowName - Flow name.
      handlerName - Handler name.