-
Notifications
You must be signed in to change notification settings - Fork 0
Annotations
nimcoh0 edited this page Dec 18, 2023
·
1 revision
: indicate that this method will be exposed for invoking
protocol - can be "RPC' or "JAXRS" (as build in protocols)
@ApiForTesting(protocol = "RPC")
: indicate that this method will be serve as a Listener
ListenerType type() default ListenerType.NONE can be "BEFORE" or "AFTER"
see listener for more details
@ListenerForTesting(type = ListenerType.BEFORE)
@ListenerForTesting(type = ListenerType.AFTER)
define parameters for the target class inject
list of parameter that include type and value
@InitializeForTesting(value = ClassType.INITIALIZE_EVERY_TIME,parameters = @Parameter(type = "String",value = "helo"))
@InitializeForTesting(value = ClassType.SINGLETON)
@InitializeForTesting(value = ClassType.NONE)