Salome HOME
checkIn method of the WebService is added
[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            /**
64             * auto generated Axis2 call back method for putFile method
65             * override this method for handling normal response from putFile operation
66             */
67            public void receiveResultputFile(
68                     org.splat.ws_client.service.salome.SimanSalomeServiceStub.PutFileResponse result
69                         ) {
70            }
71
72           /**
73            * auto generated Axis2 Error handler
74            * override this method for handling error response from putFile operation
75            */
76             public void receiveErrorputFile(java.lang.Exception e) {
77             }
78                 
79            /**
80             * auto generated Axis2 call back method for checkIn method
81             * override this method for handling normal response from checkIn operation
82             */
83            public void receiveResultcheckIn(
84                     org.splat.ws_client.service.salome.SimanSalomeServiceStub.CheckInResponse result
85                         ) {
86            }
87
88           /**
89            * auto generated Axis2 Error handler
90            * override this method for handling error response from checkIn operation
91            */
92             public void receiveErrorcheckIn(java.lang.Exception e) {
93             }
94                 
95            /**
96             * auto generated Axis2 call back method for getFile method
97             * override this method for handling normal response from getFile operation
98             */
99            public void receiveResultgetFile(
100                     org.splat.ws_client.service.salome.SimanSalomeServiceStub.GetFileResponse result
101                         ) {
102            }
103
104           /**
105            * auto generated Axis2 Error handler
106            * override this method for handling error response from getFile operation
107            */
108             public void receiveErrorgetFile(java.lang.Exception e) {
109             }
110                 
111
112
113     }
114