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: 408581 $ $Date: 2006-05-21 23:34:24 -0700 (Sun, 21 May 2006) $

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

value

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

Default:
java.lang.Void.class

SCA API

-