SCA API

org.osoa.sca.annotations
Annotation Type Callback


@Target(value={TYPE,METHOD,FIELD})
@Retention(value=RUNTIME)
public @interface Callback

When placed on a service interface, this annotation specifies the interface to be used for callbacks.

When placed on a method or field, this annotation denotes the injection site to be used for a callback reference.

Version:
$Rev: 388784 $ $Date: 2006-03-25 11:34:51 -0500 (Sat, 25 Mar 2006) $

Optional Element Summary
 java.lang.Class<?> value
          The Class of the callback interface.
 

value

public abstract java.lang.Class<?> value
The Class of the callback interface.

Default:
java.lang.Void.class

SCA API

-