Skip navigation links

Java API Reference for Oracle Infrastructure Web Services
11
Release 1 (11.1.1)

E10654-02


oracle.webservices.annotations.async
Annotation Type Callback


Deprecated. use CallbackInterface or ResponseWebService instead The Callback annotation provides the details of the callback interface for the asynchronous service of the annotated class. Its attributes are used to create the wsdl:portType for the callback in the wsdl for the asynchronous service. It also has policy attributes that can be enforced while sending the reply back to the client using client's callback web service.

@Retention(value=RUNTIME)
@Target(value=TYPE)
public @interface Callback

Optional Element Summary
 String endpointInterface
          Deprecated. The callback interface to associated with the annotaed class
 String name
          Deprecated. The name of the callback portType.
 String targetNamespace
          Deprecated. The targetNamespace is used for the namespace for the wsdl:portType, wsdl:service and all the associated XML elements).

 

name

public abstract String name
Deprecated. 
The name of the callback portType. Also used as the name of the wsdl:portType when mapped to WSDL 1.1. The default name is the name of the annotated class with suffix "Callback".
Default:
""

targetNamespace

public abstract String targetNamespace
Deprecated. 
The targetNamespace is used for the namespace for the wsdl:portType, wsdl:service and all the associated XML elements).
Default:
""

endpointInterface

public abstract String endpointInterface
Deprecated. 
The callback interface to associated with the annotaed class
Default:
""

Skip navigation links

Copyright © 2006, 2009 Oracle. All Rights Reserved.