All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.getlime.powerauth.soap.v2.PowerAuthPortV2ServiceCallbackHandler Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
/**
 * PowerAuthPortV2ServiceCallbackHandler.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis2 version: 1.7.9  Built on : Nov 16, 2018 (12:05:37 GMT)
 */
package io.getlime.powerauth.soap.v2;


/**
 *  PowerAuthPortV2ServiceCallbackHandler Callback class, Users can extend this class and implement
 *  their own receiveResult and receiveError methods.
 */
public abstract class PowerAuthPortV2ServiceCallbackHandler {
    protected Object clientData;

    /**
     * User can pass in any object that needs to be accessed once the NonBlocking
     * Web service call is finished and appropriate 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 PowerAuthPortV2ServiceCallbackHandler(Object clientData) {
        this.clientData = clientData;
    }

    /**
     * Please use this constructor if you don't want to set any clientData
     */
    public PowerAuthPortV2ServiceCallbackHandler() {
        this.clientData = null;
    }

    /**
     * Get the client data
     */
    public Object getClientData() {
        return clientData;
    }

    /**
     * auto generated Axis2 call back method for prepareActivation method
     * override this method for handling normal response from prepareActivation operation
     */
    public void receiveResultprepareActivation(
        io.getlime.powerauth.soap.v2.PowerAuthPortV2ServiceStub.PrepareActivationResponse result) {
    }

    /**
     * auto generated Axis2 Error handler
     * override this method for handling error response from prepareActivation operation
     */
    public void receiveErrorprepareActivation(java.lang.Exception e) {
    }

    /**
     * auto generated Axis2 call back method for createActivation method
     * override this method for handling normal response from createActivation operation
     */
    public void receiveResultcreateActivation(
        io.getlime.powerauth.soap.v2.PowerAuthPortV2ServiceStub.CreateActivationResponse result) {
    }

    /**
     * auto generated Axis2 Error handler
     * override this method for handling error response from createActivation operation
     */
    public void receiveErrorcreateActivation(java.lang.Exception e) {
    }

    /**
     * auto generated Axis2 call back method for createToken method
     * override this method for handling normal response from createToken operation
     */
    public void receiveResultcreateToken(
        io.getlime.powerauth.soap.v2.PowerAuthPortV2ServiceStub.CreateTokenResponse result) {
    }

    /**
     * auto generated Axis2 Error handler
     * override this method for handling error response from createToken operation
     */
    public void receiveErrorcreateToken(java.lang.Exception e) {
    }

    /**
     * auto generated Axis2 call back method for getNonPersonalizedEncryptionKey method
     * override this method for handling normal response from getNonPersonalizedEncryptionKey operation
     */
    public void receiveResultgetNonPersonalizedEncryptionKey(
        io.getlime.powerauth.soap.v2.PowerAuthPortV2ServiceStub.GetNonPersonalizedEncryptionKeyResponse result) {
    }

    /**
     * auto generated Axis2 Error handler
     * override this method for handling error response from getNonPersonalizedEncryptionKey operation
     */
    public void receiveErrorgetNonPersonalizedEncryptionKey(
        java.lang.Exception e) {
    }

    /**
     * auto generated Axis2 call back method for getPersonalizedEncryptionKey method
     * override this method for handling normal response from getPersonalizedEncryptionKey operation
     */
    public void receiveResultgetPersonalizedEncryptionKey(
        io.getlime.powerauth.soap.v2.PowerAuthPortV2ServiceStub.GetPersonalizedEncryptionKeyResponse result) {
    }

    /**
     * auto generated Axis2 Error handler
     * override this method for handling error response from getPersonalizedEncryptionKey operation
     */
    public void receiveErrorgetPersonalizedEncryptionKey(java.lang.Exception e) {
    }

    /**
     * auto generated Axis2 call back method for vaultUnlock method
     * override this method for handling normal response from vaultUnlock operation
     */
    public void receiveResultvaultUnlock(
        io.getlime.powerauth.soap.v2.PowerAuthPortV2ServiceStub.VaultUnlockResponse result) {
    }

    /**
     * auto generated Axis2 Error handler
     * override this method for handling error response from vaultUnlock operation
     */
    public void receiveErrorvaultUnlock(java.lang.Exception e) {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy