Class StateMachineMethodInvokerHelper<T,S,E>

java.lang.Object
org.springframework.statemachine.support.AbstractExpressionEvaluator
org.springframework.statemachine.processor.StateMachineMethodInvokerHelper<T,S,E>
Type Parameters:
T - the return type
All Implemented Interfaces:
org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanFactoryAware, org.springframework.beans.factory.InitializingBean

public class StateMachineMethodInvokerHelper<T,S,E> extends AbstractExpressionEvaluator
A helper class using spel to execute target methods.
  • Constructor Details

    • StateMachineMethodInvokerHelper

      public StateMachineMethodInvokerHelper(Object targetObject, Method method)
    • StateMachineMethodInvokerHelper

      public StateMachineMethodInvokerHelper(Object targetObject, Method method, Class<?> expectedType)
    • StateMachineMethodInvokerHelper

      public StateMachineMethodInvokerHelper(Object targetObject, String methodName)
    • StateMachineMethodInvokerHelper

      public StateMachineMethodInvokerHelper(Object targetObject, String methodName, Class<?> expectedType)
    • StateMachineMethodInvokerHelper

      public StateMachineMethodInvokerHelper(Object targetObject, Class<? extends Annotation> annotationType)
    • StateMachineMethodInvokerHelper

      public StateMachineMethodInvokerHelper(Object targetObject, Class<? extends Annotation> annotationType, Class<?> expectedType)
  • Method Details