MethodCallManner¶
-
public enum
MethodCallManner¶ The
MethodCallMannerenumerates possible call manners of anActionEventservice method. It also implies expected signature of this method.See also:
ActionEvent
Enum Constants¶
MAP¶
-
public static final MethodCallManner
MAP¶ When using this call manner, the parameters are evaluated, casted to appropriate types and then wrapped with a Map in which keys corresponds to parameters names and values corresponds to parameters values. Map in this form gets passed to the service method.
NAMED_PARAMETERS¶
-
public static final MethodCallManner
NAMED_PARAMETERS¶ When using this call manner, the parameters are evaluated, casted to appropriate types and then passed to the service method in specified order as a regular java method parameters.