Interface FlowContextPropertiesBuilder

  • All Implemented Interfaces:

    @FunctionalInterface() 
    public interface FlowContextPropertiesBuilder
    
                        

    Builder of context properties. If required, instances of this interface can be passed to FlowMessaging when sessions are initiated to modify context properties which are sent to the initiated flow.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract void apply(@NotNull() FlowContextProperties flowContextProperties) Every exception thrown in the implementation of this method will be propagated back through the FlowMessaging call to initiate the session.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • apply

         abstract void apply(@NotNull() FlowContextProperties flowContextProperties)

        Every exception thrown in the implementation of this method will be propagated back through the FlowMessaging call to initiate the session. It is recommended not to do anything in this method except set context properties.

        Parameters:
        flowContextProperties - A set of modifiable context properties.