summaryrefslogtreecommitdiffstats
path: root/tags/java-stable-20060304/samples/helloworld/helloworldaxis2/src/main/java/org/apache/tuscany/samples/helloworldaxis/HelloWorldServiceImplCallbackHandler.java
blob: ee30587946b797cdf5149b7790f45a1322f064da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
 * HelloWorldServiceImplCallbackHandler.java This file was auto-generated from
 * WSDL by the Apache Axis2 version: 0.94-SNAPSHOT Jan 10, 2006 (10:21:58 LKT)
 */
package org.apache.tuscany.samples.helloworldaxis;

/**
 * HelloWorldServiceImplCallbackHandler Callback class
 */
public abstract class HelloWorldServiceImplCallbackHandler {
    private Object clientData;

    /**
     * User can pass in any object that needs to be accessed once the
     * NonBlocking  Web service call is finished and appropreate method of
     * this CallBack is called.
     *
     * @param clientData Object mechanism by which the user can pass in user
     *        data that will be avilable at the time this callback is called.
     */
    public HelloWorldServiceImplCallbackHandler(Object clientData) {
        this.clientData = clientData;
    }

    /**
     * auto generated Axis2 call back method for getGreetings method
     */
    public void receiveResultgetGreetings(
        org.apache.tuscany.samples.helloworldaxis.GetGreetingsResponse param9) {
        //Fill here with the code to handle the response
    }

    /**
     * auto generated Axis2 Error handler
     */
    public void receiveErrorgetGreetings(java.lang.Exception e) {
        //Fill here with the code to handle the exception
    }
}