
    /**
     * VersionPortCallbackHandler.java
     *
     * This file was auto-generated from WSDL
     * by the Apache Axis2 version: 0.95 Mar 23, 2006 (06:50:53 LKT)
     */
    package sample;

    /**
     *  VersionPortCallbackHandler Callback class 
     */

    public abstract class VersionPortCallbackHandler{



	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 VersionPortCallbackHandler(Object clientData){
		this.clientData = clientData;
	}


        
           /**
            * auto generated Axis2 call back method for getVersion method
            *
            */
           public void receiveResultgetVersion(
                    sample.VersionPortStub.GetVersionResponse param1) {
			        //Fill here with the code to handle the response
           }

          /**
           * auto generated Axis2 Error handler
           *
           */
            public void receiveErrorgetVersion(java.lang.Exception e) {
                //Fill here with the code to handle the exception
            }
                


    }
    