]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/Siman-Stub/src/org/splat/ws_client/service/salome/SimanSalomeServiceCallbackHandler.java
Salome HOME
Download and upload operations from server to client (from client to server) are...
[tools/siman.git] / Workspace / Siman-Stub / src / org / splat / ws_client / service / salome / SimanSalomeServiceCallbackHandler.java
1
2 /**
3  * SimanSalomeServiceCallbackHandler.java
4  *
5  * This file was auto-generated from WSDL
6  * by the Apache Axis2 version: 1.6.2  Built on : Apr 17, 2012 (05:33:49 IST)
7  */
8
9     package org.splat.ws_client.service.salome;
10
11     /**
12      *  SimanSalomeServiceCallbackHandler Callback class, Users can extend this class and implement
13      *  their own receiveResult and receiveError methods.
14      */
15     public abstract class SimanSalomeServiceCallbackHandler{
16
17
18
19     protected Object clientData;
20
21     /**
22     * User can pass in any object that needs to be accessed once the NonBlocking
23     * Web service call is finished and appropriate method of this CallBack is called.
24     * @param clientData Object mechanism by which the user can pass in user data
25     * that will be avilable at the time this callback is called.
26     */
27     public SimanSalomeServiceCallbackHandler(Object clientData){
28         this.clientData = clientData;
29     }
30
31     /**
32     * Please use this constructor if you don't want to set any clientData
33     */
34     public SimanSalomeServiceCallbackHandler(){
35         this.clientData = null;
36     }
37
38     /**
39      * Get the client data
40      */
41
42      public Object getClientData() {
43         return clientData;
44      }
45
46         
47            /**
48             * auto generated Axis2 call back method for createConfigFile method
49             * override this method for handling normal response from createConfigFile operation
50             */
51            public void receiveResultcreateConfigFile(
52                     org.splat.ws_client.service.salome.SimanSalomeServiceStub.CreateConfigFileResponse result
53                         ) {
54            }
55
56           /**
57            * auto generated Axis2 Error handler
58            * override this method for handling error response from createConfigFile operation
59            */
60             public void receiveErrorcreateConfigFile(java.lang.Exception e) {
61             }
62                 
63                // No methods generated for meps other than in-out
64                 
65            /**
66             * auto generated Axis2 call back method for getFile method
67             * override this method for handling normal response from getFile operation
68             */
69            public void receiveResultgetFile(
70                     org.splat.ws_client.service.salome.SimanSalomeServiceStub.GetFileResponse result
71                         ) {
72            }
73
74           /**
75            * auto generated Axis2 Error handler
76            * override this method for handling error response from getFile operation
77            */
78             public void receiveErrorgetFile(java.lang.Exception e) {
79             }
80                 
81
82
83     }
84