Class AnnotatedMethodAction

  • All Implemented Interfaces:
    Executable

    public class AnnotatedMethodAction
    extends AbstractAction
    The AnnotatedMethodAction that invoking method in the bean instance.

    Created: 2016. 2. 9.

    Since:
    2.0.0
    • Constructor Detail

      • AnnotatedMethodAction

        public AnnotatedMethodAction​(AnnotatedMethodActionRule annotatedMethodActionRule)
        Instantiates a new AnnotatedMethodAction.
        Parameters:
        annotatedMethodActionRule - the annotated method action rule
    • Method Detail

      • execute

        public java.lang.Object execute​(Activity activity)
                                 throws java.lang.Exception
        Description copied from interface: Executable
        Execute this action.
        Parameters:
        activity - the activity
        Returns:
        the result of action execution
        Throws:
        java.lang.Exception - the exception
        ActionExecutionException - the action execution exception
      • getAnnotatedMethodActionRule

        public AnnotatedMethodActionRule getAnnotatedMethodActionRule()
        Returns the annotated bean method action rule.
        Returns:
        the annotated bean method action rule
      • isHidden

        public boolean isHidden()
        Description copied from interface: Executable
        Returns whether this action is hidden.
        Returns:
        true, if is hidden action
      • getActionType

        public ActionType getActionType()
        Description copied from interface: Executable
        Gets the Action Type.
        Returns:
        the Action Type
      • getActionRule

        public <T> T getActionRule()
        Description copied from interface: Executable
        Gets the action rule.
        Type Parameters:
        T - the generic type
        Returns:
        the action rule
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • invokeMethod

        public static java.lang.Object invokeMethod​(Activity activity,
                                                    java.lang.Object bean,
                                                    java.lang.reflect.Method method,
                                                    ParameterBindingRule[] parameterBindingRules)
                                             throws java.lang.Exception
        Throws:
        java.lang.Exception