webservice wsdl2java
parent
0ed7bb28df
commit
18f6e048bc
@ -0,0 +1,52 @@
|
||||
/**
|
||||
* CRM_SyncTempUnfreezeCallbackHandler.java
|
||||
*
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.crmoa;
|
||||
|
||||
/**
|
||||
* CRM_SyncTempUnfreezeCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class CRM_SyncTempUnfreezeCallbackHandler {
|
||||
|
||||
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 CRM_SyncTempUnfreezeCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public CRM_SyncTempUnfreezeCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for cRM_OA_SyncTempUnfreezeList method override this
|
||||
* method for handling normal response from cRM_OA_SyncTempUnfreezeList operation
|
||||
*/
|
||||
public void receiveResultcRM_OA_SyncTempUnfreezeList(
|
||||
CRM_SyncTempUnfreezeStub
|
||||
.CRM_OA_SyncTempUnfreezeListResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* cRM_OA_SyncTempUnfreezeList operation
|
||||
*/
|
||||
public void receiveErrorcRM_OA_SyncTempUnfreezeList(Exception e) {}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,66 +1,52 @@
|
||||
|
||||
/**
|
||||
* CRM_SyncUnFreezeTimesCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.1 Built on : Oct 19, 2009 (10:59:00 EDT)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.crmoa;
|
||||
|
||||
package com.weaver.seconddev.interfaces.crmoa;
|
||||
|
||||
/**
|
||||
* CRM_SyncUnFreezeTimesCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class CRM_SyncUnFreezeTimesCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 CRM_SyncUnFreezeTimesCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public CRM_SyncUnFreezeTimesCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for cRM_OA_SyncUnFreezeTimes method
|
||||
* override this method for handling normal response from cRM_OA_SyncUnFreezeTimes operation
|
||||
*/
|
||||
public void receiveResultcRM_OA_SyncUnFreezeTimes(
|
||||
CRM_SyncUnFreezeTimesStub.CRM_OA_SyncUnFreezeTimesResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from cRM_OA_SyncUnFreezeTimes operation
|
||||
*/
|
||||
public void receiveErrorcRM_OA_SyncUnFreezeTimes(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* CRM_SyncUnFreezeTimesCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class CRM_SyncUnFreezeTimesCallbackHandler {
|
||||
|
||||
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 CRM_SyncUnFreezeTimesCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public CRM_SyncUnFreezeTimesCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for cRM_OA_SyncUnFreezeTimes method override this method
|
||||
* for handling normal response from cRM_OA_SyncUnFreezeTimes operation
|
||||
*/
|
||||
public void receiveResultcRM_OA_SyncUnFreezeTimes(
|
||||
CRM_SyncUnFreezeTimesStub
|
||||
.CRM_OA_SyncUnFreezeTimesResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* cRM_OA_SyncUnFreezeTimes operation
|
||||
*/
|
||||
public void receiveErrorcRM_OA_SyncUnFreezeTimes(Exception e) {}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,66 +0,0 @@
|
||||
|
||||
/**
|
||||
* SI_HTCRMBlistTempLifting_OUTServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
*/
|
||||
|
||||
package com.weaver.seconddev.interfaces.crmoa;
|
||||
|
||||
/**
|
||||
* SI_HTCRMBlistTempLifting_OUTServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_HTCRMBlistTempLifting_OUTServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 SI_HTCRMBlistTempLifting_OUTServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public SI_HTCRMBlistTempLifting_OUTServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_HTCRMBlistTempLifting_OUT method
|
||||
* override this method for handling normal response from sI_HTCRMBlistTempLifting_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_HTCRMBlistTempLifting_OUT(
|
||||
SI_HTCRMBlistTempLifting_OUTServiceStub.CRM_OA_SyncTempUnfreezeListResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from sI_HTCRMBlistTempLifting_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_HTCRMBlistTempLifting_OUT(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,98 +1,79 @@
|
||||
|
||||
/**
|
||||
* DelayDateSyncServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
/**
|
||||
* DelayDateSyncServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class DelayDateSyncServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 DelayDateSyncServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public DelayDateSyncServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for delayDateSyncService method
|
||||
* override this method for handling normal response from delayDateSyncService operation
|
||||
*/
|
||||
public void receiveResultdelayDateSyncService(
|
||||
DelayDateSyncServiceStub.DelayDateSyncServiceResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from delayDateSyncService operation
|
||||
*/
|
||||
public void receiveErrordelayDateSyncService(Exception e) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for getpayControlBusiness method
|
||||
* override this method for handling normal response from getpayControlBusiness operation
|
||||
*/
|
||||
public void receiveResultgetpayControlBusiness(
|
||||
DelayDateSyncServiceStub.GetpayControlBusinessResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from getpayControlBusiness operation
|
||||
*/
|
||||
public void receiveErrorgetpayControlBusiness(Exception e) {
|
||||
}
|
||||
|
||||
// No methods generated for meps other than in-out
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for delayDateSyncService method
|
||||
* override this method for handling normal response from delayDateSyncService operation
|
||||
*/
|
||||
public void receiveResultdelayDateSyncService(
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from delayDateSyncService operation
|
||||
*/
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* DelayDateSyncServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class DelayDateSyncServiceCallbackHandler {
|
||||
|
||||
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 DelayDateSyncServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public DelayDateSyncServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for delayDateSyncService method override this method for
|
||||
* handling normal response from delayDateSyncService operation
|
||||
*/
|
||||
public void receiveResultdelayDateSyncService(
|
||||
com.weaver.seconddev.interfaces.easoa.DelayDateSyncServiceStub.DelayDateSyncServiceResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* delayDateSyncService operation
|
||||
*/
|
||||
public void receiveErrordelayDateSyncService(java.lang.Exception e) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for getpayControlBusiness method override this method for
|
||||
* handling normal response from getpayControlBusiness operation
|
||||
*/
|
||||
public void receiveResultgetpayControlBusiness(
|
||||
com.weaver.seconddev.interfaces.easoa.DelayDateSyncServiceStub.GetpayControlBusinessResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* getpayControlBusiness operation
|
||||
*/
|
||||
public void receiveErrorgetpayControlBusiness(java.lang.Exception e) {}
|
||||
|
||||
// No methods generated for meps other than in-out
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for delayDateSyncService method override this method for
|
||||
* handling normal response from delayDateSyncService operation
|
||||
*/
|
||||
public void receiveResultdelayDateSyncService() {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* delayDateSyncService operation
|
||||
*/
|
||||
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,135 @@
|
||||
/**
|
||||
* PayControlServiceCallbackHandler.java
|
||||
*
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
/**
|
||||
* PayControlServiceCallbackHandler Callback class, Users can extend this class and implement their
|
||||
* own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class PayControlServiceCallbackHandler {
|
||||
|
||||
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 PayControlServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public PayControlServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for queryPayControlStatus method override this method for
|
||||
* handling normal response from queryPayControlStatus operation
|
||||
*/
|
||||
public void receiveResultqueryPayControlStatus(
|
||||
PayControlServiceStub.QueryPayControlStatusResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* queryPayControlStatus operation
|
||||
*/
|
||||
public void receiveErrorqueryPayControlStatus(Exception e) {}
|
||||
|
||||
// No methods generated for meps other than in-out
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for getpayControlBusiness method override this method for
|
||||
* handling normal response from getpayControlBusiness operation
|
||||
*/
|
||||
public void receiveResultgetpayControlBusiness(
|
||||
PayControlServiceStub.GetpayControlBusinessResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* getpayControlBusiness operation
|
||||
*/
|
||||
public void receiveErrorgetpayControlBusiness(Exception e) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for queryVendorInfoList method override this method for
|
||||
* handling normal response from queryVendorInfoList operation
|
||||
*/
|
||||
public void receiveResultqueryVendorInfoList(
|
||||
PayControlServiceStub.QueryVendorInfoListResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* queryVendorInfoList operation
|
||||
*/
|
||||
public void receiveErrorqueryVendorInfoList(Exception e) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for doPayControl method override this method for handling
|
||||
* normal response from doPayControl operation
|
||||
*/
|
||||
public void receiveResultdoPayControl(
|
||||
PayControlServiceStub.DoPayControlResponse result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* doPayControl operation
|
||||
*/
|
||||
public void receiveErrordoPayControl(Exception e) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for queryOnlineCompanyList method override this method
|
||||
* for handling normal response from queryOnlineCompanyList operation
|
||||
*/
|
||||
public void receiveResultqueryOnlineCompanyList(
|
||||
PayControlServiceStub.QueryOnlineCompanyListResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* queryOnlineCompanyList operation
|
||||
*/
|
||||
public void receiveErrorqueryOnlineCompanyList(Exception e) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for checkData method override this method for handling
|
||||
* normal response from checkData operation
|
||||
*/
|
||||
public void receiveResultcheckData(
|
||||
PayControlServiceStub.CheckDataResponse result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* checkData operation
|
||||
*/
|
||||
public void receiveErrorcheckData(Exception e) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for querySourceBoeNum method override this method for
|
||||
* handling normal response from querySourceBoeNum operation
|
||||
*/
|
||||
public void receiveResultquerySourceBoeNum(
|
||||
PayControlServiceStub.QuerySourceBoeNumResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* querySourceBoeNum operation
|
||||
*/
|
||||
public void receiveErrorquerySourceBoeNum(Exception e) {}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,66 +1,52 @@
|
||||
|
||||
/**
|
||||
* SI_BusinessTripApplicationSync_OUTServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
/**
|
||||
* SI_BusinessTripApplicationSync_OUTServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_BusinessTripApplicationSync_OUTServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 SI_BusinessTripApplicationSync_OUTServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public SI_BusinessTripApplicationSync_OUTServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_BusinessTripApplicationSync_OUT method
|
||||
* override this method for handling normal response from sI_BusinessTripApplicationSync_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_BusinessTripApplicationSync_OUT(
|
||||
SI_BusinessTripApplicationSync_OUTServiceStub.SyncTravelApplyServiceResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from sI_BusinessTripApplicationSync_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_BusinessTripApplicationSync_OUT(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* SI_BusinessTripApplicationSync_OUTServiceCallbackHandler Callback class, Users can extend this
|
||||
* class and implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_BusinessTripApplicationSync_OUTServiceCallbackHandler {
|
||||
|
||||
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 SI_BusinessTripApplicationSync_OUTServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public SI_BusinessTripApplicationSync_OUTServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_BusinessTripApplicationSync_OUT method override
|
||||
* this method for handling normal response from sI_BusinessTripApplicationSync_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_BusinessTripApplicationSync_OUT(
|
||||
SI_BusinessTripApplicationSync_OUTServiceStub
|
||||
.SyncTravelApplyServiceResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* sI_BusinessTripApplicationSync_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_BusinessTripApplicationSync_OUT(Exception e) {}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,66 +1,52 @@
|
||||
|
||||
/**
|
||||
* SI_FeeApplicationSync_OUTServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
/**
|
||||
* SI_FeeApplicationSync_OUTServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_FeeApplicationSync_OUTServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 SI_FeeApplicationSync_OUTServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public SI_FeeApplicationSync_OUTServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_FeeApplicationSync_OUT method
|
||||
* override this method for handling normal response from sI_FeeApplicationSync_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_FeeApplicationSync_OUT(
|
||||
SI_FeeApplicationSync_OUTServiceStub.CostStandardSynchronizationServiceResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from sI_FeeApplicationSync_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_FeeApplicationSync_OUT(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* SI_FeeApplicationSync_OUTServiceCallbackHandler Callback class, Users can extend this class and
|
||||
* implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_FeeApplicationSync_OUTServiceCallbackHandler {
|
||||
|
||||
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 SI_FeeApplicationSync_OUTServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public SI_FeeApplicationSync_OUTServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_FeeApplicationSync_OUT method override this method
|
||||
* for handling normal response from sI_FeeApplicationSync_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_FeeApplicationSync_OUT(
|
||||
com.weaver.seconddev.interfaces.easoa.SI_FeeApplicationSync_OUTServiceStub
|
||||
.CostStandardSynchronizationServiceResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* sI_FeeApplicationSync_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_FeeApplicationSync_OUT(java.lang.Exception e) {}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,66 +1,52 @@
|
||||
|
||||
/**
|
||||
* SI_FiAgncyAssetApplicationSync_OUTServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
/**
|
||||
* SI_FiAgncyAssetApplicationSync_OUTServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_FiAgncyAssetApplicationSync_OUTServiceCallbackHandler {
|
||||
|
||||
|
||||
|
||||
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 SI_FiAgncyAssetApplicationSync_OUTServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public SI_FiAgncyAssetApplicationSync_OUTServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_FiAgncyAssetApplicationSync_OUT method
|
||||
* override this method for handling normal response from sI_FiAgncyAssetApplicationSync_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_FiAgncyAssetApplicationSync_OUT(
|
||||
com.weaver.seconddev.interfaces.easoa.SI_FiAgncyAssetApplicationSync_OUTServiceStub.IntermediaryServiceResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from sI_FiAgncyAssetApplicationSync_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_FiAgncyAssetApplicationSync_OUT(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* SI_FiAgncyAssetApplicationSync_OUTServiceCallbackHandler Callback class, Users can extend this
|
||||
* class and implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_FiAgncyAssetApplicationSync_OUTServiceCallbackHandler {
|
||||
|
||||
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 SI_FiAgncyAssetApplicationSync_OUTServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public SI_FiAgncyAssetApplicationSync_OUTServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_FiAgncyAssetApplicationSync_OUT method override
|
||||
* this method for handling normal response from sI_FiAgncyAssetApplicationSync_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_FiAgncyAssetApplicationSync_OUT(
|
||||
com.weaver.seconddev.interfaces.easoa.SI_FiAgncyAssetApplicationSync_OUTServiceStub
|
||||
.IntermediaryServiceResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* sI_FiAgncyAssetApplicationSync_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_FiAgncyAssetApplicationSync_OUT(java.lang.Exception e) {}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,130 +0,0 @@
|
||||
|
||||
/**
|
||||
* SI_HTOAPayControl_OUTServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
*/
|
||||
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
/**
|
||||
* SI_HTOAPayControl_OUTServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_HTOAPayControl_OUTServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 SI_HTOAPayControl_OUTServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public SI_HTOAPayControl_OUTServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for do method
|
||||
* override this method for handling normal response from do operation
|
||||
*/
|
||||
public void receiveResultdo(
|
||||
SI_HTOAPayControl_OUTServiceStub.DoPayControlResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from do operation
|
||||
*/
|
||||
public void receiveErrordo(Exception e) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for status method
|
||||
* override this method for handling normal response from status operation
|
||||
*/
|
||||
public void receiveResultstatus(
|
||||
SI_HTOAPayControl_OUTServiceStub.QueryPayControlStatusResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from status operation
|
||||
*/
|
||||
public void receiveErrorstatus(Exception e) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for company method
|
||||
* override this method for handling normal response from company operation
|
||||
*/
|
||||
public void receiveResultcompany(
|
||||
SI_HTOAPayControl_OUTServiceStub.QueryOnlineCompanyListResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from company operation
|
||||
*/
|
||||
public void receiveErrorcompany(Exception e) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for vendor method
|
||||
* override this method for handling normal response from vendor operation
|
||||
*/
|
||||
public void receiveResultvendor(
|
||||
SI_HTOAPayControl_OUTServiceStub.QueryVendorInfoListResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from vendor operation
|
||||
*/
|
||||
public void receiveErrorvendor(Exception e) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for bOE method
|
||||
* override this method for handling normal response from bOE operation
|
||||
*/
|
||||
public void receiveResultbOE(
|
||||
SI_HTOAPayControl_OUTServiceStub.QuerySourceBoeNumResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from bOE operation
|
||||
*/
|
||||
public void receiveErrorbOE(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,66 +0,0 @@
|
||||
|
||||
/**
|
||||
* SI_InterLoanApplicationSync_OUTServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
*/
|
||||
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
/**
|
||||
* SI_InterLoanApplicationSync_OUTServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_InterLoanApplicationSync_OUTServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 SI_InterLoanApplicationSync_OUTServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public SI_InterLoanApplicationSync_OUTServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_InterLoanApplicationSync_OUT method
|
||||
* override this method for handling normal response from sI_InterLoanApplicationSync_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_InterLoanApplicationSync_OUT(
|
||||
SI_InterLoanApplicationSync_OUTServiceStub.InternalBorrowingServiceResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from sI_InterLoanApplicationSync_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_InterLoanApplicationSync_OUT(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,66 +1,52 @@
|
||||
|
||||
/**
|
||||
* SI_WhitelistSync_OUTServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
/**
|
||||
* SI_WhitelistSync_OUTServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_WhitelistSync_OUTServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 SI_WhitelistSync_OUTServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public SI_WhitelistSync_OUTServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_WhitelistSync_OUT method
|
||||
* override this method for handling normal response from sI_WhitelistSync_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_WhitelistSync_OUT(
|
||||
SI_WhitelistSync_OUTServiceStub.SyncWhiteListServiceResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from sI_WhitelistSync_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_WhitelistSync_OUT(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* SI_WhitelistSync_OUTServiceCallbackHandler Callback class, Users can extend this class and
|
||||
* implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_WhitelistSync_OUTServiceCallbackHandler {
|
||||
|
||||
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 SI_WhitelistSync_OUTServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public SI_WhitelistSync_OUTServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_WhitelistSync_OUT method override this method for
|
||||
* handling normal response from sI_WhitelistSync_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_WhitelistSync_OUT(
|
||||
SI_WhitelistSync_OUTServiceStub
|
||||
.SyncWhiteListServiceResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* sI_WhitelistSync_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_WhitelistSync_OUT(Exception e) {}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,84 +1,67 @@
|
||||
|
||||
/**
|
||||
* SieOaVoucherServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
package com.weaver.seconddev.interfaces.easoa;
|
||||
|
||||
/**
|
||||
* SieOaVoucherServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SieOaVoucherServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
protected Object clientData;
|
||||
/**
|
||||
* SieOaVoucherServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SieOaVoucherServiceCallbackHandler {
|
||||
|
||||
/**
|
||||
* 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 SieOaVoucherServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
protected Object clientData;
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public SieOaVoucherServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
/**
|
||||
* 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 SieOaVoucherServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public SieOaVoucherServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for getBoeBusiness method
|
||||
* override this method for handling normal response from getBoeBusiness operation
|
||||
*/
|
||||
public void receiveResultgetBoeBusiness(
|
||||
SieOaVoucherServiceStub.GetBoeBusinessResponse result
|
||||
) {
|
||||
}
|
||||
/**
|
||||
* auto generated Axis2 call back method for getBoeBusiness method override this method for
|
||||
* handling normal response from getBoeBusiness operation
|
||||
*/
|
||||
public void receiveResultgetBoeBusiness(
|
||||
SieOaVoucherServiceStub.GetBoeBusinessResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from getBoeBusiness operation
|
||||
*/
|
||||
public void receiveErrorgetBoeBusiness(Exception e) {
|
||||
}
|
||||
|
||||
// No methods generated for meps other than in-out
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sieOaVoucherService method
|
||||
* override this method for handling normal response from sieOaVoucherService operation
|
||||
*/
|
||||
public void receiveResultsieOaVoucherService(
|
||||
SieOaVoucherServiceStub.SieOaVoucherServiceResponse result
|
||||
) {
|
||||
}
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* getBoeBusiness operation
|
||||
*/
|
||||
public void receiveErrorgetBoeBusiness(Exception e) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from sieOaVoucherService operation
|
||||
*/
|
||||
public void receiveErrorsieOaVoucherService(Exception e) {
|
||||
}
|
||||
|
||||
// No methods generated for meps other than in-out
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sieOaVoucherService method override this method for
|
||||
* handling normal response from sieOaVoucherService operation
|
||||
*/
|
||||
public void receiveResultsieOaVoucherService(
|
||||
SieOaVoucherServiceStub.SieOaVoucherServiceResponse
|
||||
result) {}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* sieOaVoucherService operation
|
||||
*/
|
||||
public void receiveErrorsieOaVoucherService(Exception e) {}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,66 +1,51 @@
|
||||
|
||||
/**
|
||||
* SI_HTPortalFuncSync_OUTServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.eipoa;
|
||||
|
||||
package com.weaver.seconddev.interfaces.eipoa;
|
||||
|
||||
/**
|
||||
* SI_HTPortalFuncSync_OUTServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_HTPortalFuncSync_OUTServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 SI_HTPortalFuncSync_OUTServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public SI_HTPortalFuncSync_OUTServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_HTPortalFuncSync_OUT method
|
||||
* override this method for handling normal response from sI_HTPortalFuncSync_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_HTPortalFuncSync_OUT(
|
||||
SI_HTPortalFuncSync_OUTServiceStub.UserOaAccountResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from sI_HTPortalFuncSync_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_HTPortalFuncSync_OUT(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* SI_HTPortalFuncSync_OUTServiceCallbackHandler Callback class, Users can extend this class and
|
||||
* implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_HTPortalFuncSync_OUTServiceCallbackHandler {
|
||||
|
||||
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 SI_HTPortalFuncSync_OUTServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public SI_HTPortalFuncSync_OUTServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_HTPortalFuncSync_OUT method override this method
|
||||
* for handling normal response from sI_HTPortalFuncSync_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_HTPortalFuncSync_OUT(
|
||||
SI_HTPortalFuncSync_OUTServiceStub.UserOaAccountResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* sI_HTPortalFuncSync_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_HTPortalFuncSync_OUT(Exception e) {}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,98 +1,79 @@
|
||||
|
||||
/**
|
||||
* SI_HTPortalPlan_OUTServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.eipoa;
|
||||
|
||||
package com.weaver.seconddev.interfaces.eipoa;
|
||||
|
||||
/**
|
||||
* SI_HTPortalPlan_OUTServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_HTPortalPlan_OUTServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 SI_HTPortalPlan_OUTServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public SI_HTPortalPlan_OUTServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for uPDATE method
|
||||
* override this method for handling normal response from uPDATE operation
|
||||
*/
|
||||
public void receiveResultuPDATE(
|
||||
SI_HTPortalPlan_OUTServiceStub.UpdatePlanResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from uPDATE operation
|
||||
*/
|
||||
public void receiveErroruPDATE(Exception e) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for eDIT method
|
||||
* override this method for handling normal response from eDIT operation
|
||||
*/
|
||||
public void receiveResulteDIT(
|
||||
SI_HTPortalPlan_OUTServiceStub.EditPlanResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from eDIT operation
|
||||
*/
|
||||
public void receiveErroreDIT(Exception e) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for cREATE method
|
||||
* override this method for handling normal response from cREATE operation
|
||||
*/
|
||||
public void receiveResultcREATE(
|
||||
SI_HTPortalPlan_OUTServiceStub.InsertPlanResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from cREATE operation
|
||||
*/
|
||||
public void receiveErrorcREATE(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* SI_HTPortalPlan_OUTServiceCallbackHandler Callback class, Users can extend this class and
|
||||
* implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_HTPortalPlan_OUTServiceCallbackHandler {
|
||||
|
||||
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 SI_HTPortalPlan_OUTServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public SI_HTPortalPlan_OUTServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for uPDATE method override this method for handling
|
||||
* normal response from uPDATE operation
|
||||
*/
|
||||
public void receiveResultuPDATE(
|
||||
SI_HTPortalPlan_OUTServiceStub.UpdatePlanResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from uPDATE
|
||||
* operation
|
||||
*/
|
||||
public void receiveErroruPDATE(Exception e) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for eDIT method override this method for handling normal
|
||||
* response from eDIT operation
|
||||
*/
|
||||
public void receiveResulteDIT(
|
||||
SI_HTPortalPlan_OUTServiceStub.EditPlanResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from eDIT
|
||||
* operation
|
||||
*/
|
||||
public void receiveErroreDIT(Exception e) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for cREATE method override this method for handling
|
||||
* normal response from cREATE operation
|
||||
*/
|
||||
public void receiveResultcREATE(
|
||||
SI_HTPortalPlan_OUTServiceStub.InsertPlanResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from cREATE
|
||||
* operation
|
||||
*/
|
||||
public void receiveErrorcREATE(Exception e) {}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,66 +1,51 @@
|
||||
|
||||
/**
|
||||
* SI_HTPortalUAMGMT2_OUTServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.eipoa;
|
||||
|
||||
package com.weaver.seconddev.interfaces.eipoa;
|
||||
|
||||
/**
|
||||
* SI_HTPortalUAMGMT2_OUTServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_HTPortalUAMGMT2_OUTServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 SI_HTPortalUAMGMT2_OUTServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public SI_HTPortalUAMGMT2_OUTServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_HTPortalUAMGMT2_OUT method
|
||||
* override this method for handling normal response from sI_HTPortalUAMGMT2_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_HTPortalUAMGMT2_OUT(
|
||||
SI_HTPortalUAMGMT2_OUTServiceStub.UserAccountResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from sI_HTPortalUAMGMT2_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_HTPortalUAMGMT2_OUT(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* SI_HTPortalUAMGMT2_OUTServiceCallbackHandler Callback class, Users can extend this class and
|
||||
* implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_HTPortalUAMGMT2_OUTServiceCallbackHandler {
|
||||
|
||||
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 SI_HTPortalUAMGMT2_OUTServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public SI_HTPortalUAMGMT2_OUTServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_HTPortalUAMGMT2_OUT method override this method
|
||||
* for handling normal response from sI_HTPortalUAMGMT2_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_HTPortalUAMGMT2_OUT(
|
||||
SI_HTPortalUAMGMT2_OUTServiceStub.UserAccountResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* sI_HTPortalUAMGMT2_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_HTPortalUAMGMT2_OUT(Exception e) {}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,66 +1,51 @@
|
||||
|
||||
/**
|
||||
* ZMES_OA_SUBMIT_SERVICECallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.gdwmsoa;
|
||||
|
||||
package com.weaver.seconddev.interfaces.gdwmsoa;
|
||||
|
||||
/**
|
||||
* ZMES_OA_SUBMIT_SERVICECallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class ZMES_OA_SUBMIT_SERVICECallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 ZMES_OA_SUBMIT_SERVICECallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public ZMES_OA_SUBMIT_SERVICECallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for zMES_OA_SUBMIT method
|
||||
* override this method for handling normal response from zMES_OA_SUBMIT operation
|
||||
*/
|
||||
public void receiveResultzMES_OA_SUBMIT(
|
||||
ZMES_OA_SUBMIT_SERVICEStub.ZMES_OA_SUBMITResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from zMES_OA_SUBMIT operation
|
||||
*/
|
||||
public void receiveErrorzMES_OA_SUBMIT(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* ZMES_OA_SUBMIT_SERVICECallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class ZMES_OA_SUBMIT_SERVICECallbackHandler {
|
||||
|
||||
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 ZMES_OA_SUBMIT_SERVICECallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public ZMES_OA_SUBMIT_SERVICECallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for zMES_OA_SUBMIT method override this method for
|
||||
* handling normal response from zMES_OA_SUBMIT operation
|
||||
*/
|
||||
public void receiveResultzMES_OA_SUBMIT(
|
||||
ZMES_OA_SUBMIT_SERVICEStub.ZMES_OA_SUBMITResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* zMES_OA_SUBMIT operation
|
||||
*/
|
||||
public void receiveErrorzMES_OA_SUBMIT(Exception e) {}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,66 +1,52 @@
|
||||
|
||||
/**
|
||||
* SI_HTOAPurreqAPPROSync_OUTServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.k3;
|
||||
|
||||
package com.weaver.seconddev.interfaces.k3;
|
||||
|
||||
/**
|
||||
* SI_HTOAPurreqAPPROSync_OUTServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_HTOAPurreqAPPROSync_OUTServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 SI_HTOAPurreqAPPROSync_OUTServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public SI_HTOAPurreqAPPROSync_OUTServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_HTOAPurreqAPPROSync_OUT method
|
||||
* override this method for handling normal response from sI_HTOAPurreqAPPROSync_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_HTOAPurreqAPPROSync_OUT(
|
||||
SI_HTOAPurreqAPPROSync_OUTServiceStub.Oa2K3PurchaseRequestResultResponse result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from sI_HTOAPurreqAPPROSync_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_HTOAPurreqAPPROSync_OUT(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* SI_HTOAPurreqAPPROSync_OUTServiceCallbackHandler Callback class, Users can extend this class and
|
||||
* implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_HTOAPurreqAPPROSync_OUTServiceCallbackHandler {
|
||||
|
||||
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 SI_HTOAPurreqAPPROSync_OUTServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public SI_HTOAPurreqAPPROSync_OUTServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_HTOAPurreqAPPROSync_OUT method override this
|
||||
* method for handling normal response from sI_HTOAPurreqAPPROSync_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_HTOAPurreqAPPROSync_OUT(
|
||||
SI_HTOAPurreqAPPROSync_OUTServiceStub
|
||||
.Oa2K3PurchaseRequestResultResponse
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* sI_HTOAPurreqAPPROSync_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_HTOAPurreqAPPROSync_OUT(Exception e) {}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,40 @@
|
||||
/**
|
||||
* SI_OA_HTOAApproFlowSync_OUTServiceCallbackHandler.java
|
||||
*
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.oames;
|
||||
|
||||
/**
|
||||
* SI_OA_HTOAApproFlowSync_OUTServiceCallbackHandler Callback class, Users can extend this class and
|
||||
* implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_OA_HTOAApproFlowSync_OUTServiceCallbackHandler {
|
||||
|
||||
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 SI_OA_HTOAApproFlowSync_OUTServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public SI_OA_HTOAApproFlowSync_OUTServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
// No methods generated for meps other than in-out
|
||||
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,66 +1,52 @@
|
||||
|
||||
/**
|
||||
* MallPurReqChkServiceServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.1 Built on : Oct 19, 2009 (10:59:00 EDT)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.srmoa;
|
||||
|
||||
package com.weaver.seconddev.interfaces.srmoa;
|
||||
|
||||
/**
|
||||
* MallPurReqChkServiceServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class MallPurReqChkServiceServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 MallPurReqChkServiceServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public MallPurReqChkServiceServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for mALL_OA_PUR_REQ_CHK_RESULT method
|
||||
* override this method for handling normal response from mALL_OA_PUR_REQ_CHK_RESULT operation
|
||||
*/
|
||||
public void receiveResultmALL_OA_PUR_REQ_CHK_RESULT(
|
||||
MallPurReqChkServiceServiceStub.MALL_OA_PUR_REQ_CHK_RESULTResponseE result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from mALL_OA_PUR_REQ_CHK_RESULT operation
|
||||
*/
|
||||
public void receiveErrormALL_OA_PUR_REQ_CHK_RESULT(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* MallPurReqChkServiceServiceCallbackHandler Callback class, Users can extend this class and
|
||||
* implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class MallPurReqChkServiceServiceCallbackHandler {
|
||||
|
||||
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 MallPurReqChkServiceServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public MallPurReqChkServiceServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for mALL_OA_PUR_REQ_CHK_RESULT method override this
|
||||
* method for handling normal response from mALL_OA_PUR_REQ_CHK_RESULT operation
|
||||
*/
|
||||
public void receiveResultmALL_OA_PUR_REQ_CHK_RESULT(
|
||||
com.weaver.seconddev.interfaces.srmoa.MallPurReqChkServiceServiceStub
|
||||
.MALL_OA_PUR_REQ_CHK_RESULTResponseE
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* mALL_OA_PUR_REQ_CHK_RESULT operation
|
||||
*/
|
||||
public void receiveErrormALL_OA_PUR_REQ_CHK_RESULT(java.lang.Exception e) {}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,52 @@
|
||||
/**
|
||||
* OaSrmVendorPropmtionServiceServiceCallbackHandler.java
|
||||
*
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.srmoa;
|
||||
|
||||
/**
|
||||
* OaSrmVendorPropmtionServiceServiceCallbackHandler Callback class, Users can extend this class and
|
||||
* implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class OaSrmVendorPropmtionServiceServiceCallbackHandler {
|
||||
|
||||
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 OaSrmVendorPropmtionServiceServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public OaSrmVendorPropmtionServiceServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for oA_SRM_VENDOR_PROPMTION method override this method
|
||||
* for handling normal response from oA_SRM_VENDOR_PROPMTION operation
|
||||
*/
|
||||
public void receiveResultoA_SRM_VENDOR_PROPMTION(
|
||||
com.weaver.seconddev.interfaces.srmoa.OaSrmVendorPropmtionServiceServiceStub
|
||||
.OA_SRM_VENDOR_PROPMTIONResponseE
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* oA_SRM_VENDOR_PROPMTION operation
|
||||
*/
|
||||
public void receiveErroroA_SRM_VENDOR_PROPMTION(java.lang.Exception e) {}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,66 +1,52 @@
|
||||
|
||||
/**
|
||||
* RfqCheckPriceHandlerServiceServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.1 Built on : Oct 19, 2009 (10:59:00 EDT)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.srmoa;
|
||||
|
||||
package com.weaver.seconddev.interfaces.srmoa;
|
||||
|
||||
/**
|
||||
* RfqCheckPriceHandlerServiceServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class RfqCheckPriceHandlerServiceServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 RfqCheckPriceHandlerServiceServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public RfqCheckPriceHandlerServiceServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sRM_OA_CHECK_PRICE_RESULT method
|
||||
* override this method for handling normal response from sRM_OA_CHECK_PRICE_RESULT operation
|
||||
*/
|
||||
public void receiveResultsRM_OA_CHECK_PRICE_RESULT(
|
||||
RfqCheckPriceHandlerServiceServiceStub.SRM_OA_CHECK_PRICE_RESULTResponseE result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from sRM_OA_CHECK_PRICE_RESULT operation
|
||||
*/
|
||||
public void receiveErrorsRM_OA_CHECK_PRICE_RESULT(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* RfqCheckPriceHandlerServiceServiceCallbackHandler Callback class, Users can extend this class and
|
||||
* implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class RfqCheckPriceHandlerServiceServiceCallbackHandler {
|
||||
|
||||
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 RfqCheckPriceHandlerServiceServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public RfqCheckPriceHandlerServiceServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sRM_OA_CHECK_PRICE_RESULT method override this method
|
||||
* for handling normal response from sRM_OA_CHECK_PRICE_RESULT operation
|
||||
*/
|
||||
public void receiveResultsRM_OA_CHECK_PRICE_RESULT(
|
||||
com.weaver.seconddev.interfaces.srmoa.RfqCheckPriceHandlerServiceServiceStub
|
||||
.SRM_OA_CHECK_PRICE_RESULTResponseE
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* sRM_OA_CHECK_PRICE_RESULT operation
|
||||
*/
|
||||
public void receiveErrorsRM_OA_CHECK_PRICE_RESULT(java.lang.Exception e) {}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,66 +1,52 @@
|
||||
|
||||
/**
|
||||
* SI_GoodsSupplyExpanding_OUTServiceCallbackHandler.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis2 version: 1.5.6 Built on : Aug 30, 2011 (10:00:16 CEST)
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.srmoa;
|
||||
|
||||
package com.weaver.seconddev.interfaces.srmoa;
|
||||
|
||||
/**
|
||||
* SI_GoodsSupplyExpanding_OUTServiceCallbackHandler Callback class, Users can extend this class and implement
|
||||
* their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_GoodsSupplyExpanding_OUTServiceCallbackHandler{
|
||||
|
||||
|
||||
|
||||
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 SI_GoodsSupplyExpanding_OUTServiceCallbackHandler(Object clientData){
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Please use this constructor if you don't want to set any clientData
|
||||
*/
|
||||
public SI_GoodsSupplyExpanding_OUTServiceCallbackHandler(){
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the client data
|
||||
*/
|
||||
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_GoodsSupplyExpanding_OUT method
|
||||
* override this method for handling normal response from sI_GoodsSupplyExpanding_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_GoodsSupplyExpanding_OUT(
|
||||
SI_GoodsSupplyExpanding_OUTServiceStub.SRM_OA_VENMATEXT_RESULTResponseE result
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler
|
||||
* override this method for handling error response from sI_GoodsSupplyExpanding_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_GoodsSupplyExpanding_OUT(Exception e) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* SI_GoodsSupplyExpanding_OUTServiceCallbackHandler Callback class, Users can extend this class and
|
||||
* implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class SI_GoodsSupplyExpanding_OUTServiceCallbackHandler {
|
||||
|
||||
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 SI_GoodsSupplyExpanding_OUTServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public SI_GoodsSupplyExpanding_OUTServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sI_GoodsSupplyExpanding_OUT method override this
|
||||
* method for handling normal response from sI_GoodsSupplyExpanding_OUT operation
|
||||
*/
|
||||
public void receiveResultsI_GoodsSupplyExpanding_OUT(
|
||||
SI_GoodsSupplyExpanding_OUTServiceStub
|
||||
.SRM_OA_VENMATEXT_RESULTResponseE
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* sI_GoodsSupplyExpanding_OUT operation
|
||||
*/
|
||||
public void receiveErrorsI_GoodsSupplyExpanding_OUT(Exception e) {}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,52 @@
|
||||
/**
|
||||
* VdDlvApplyHandlerServiceServiceCallbackHandler.java
|
||||
*
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.srmoa;
|
||||
|
||||
/**
|
||||
* VdDlvApplyHandlerServiceServiceCallbackHandler Callback class, Users can extend this class and
|
||||
* implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class VdDlvApplyHandlerServiceServiceCallbackHandler {
|
||||
|
||||
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 VdDlvApplyHandlerServiceServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public VdDlvApplyHandlerServiceServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for oA_SRM_VD_DLV_APPLY method override this method for
|
||||
* handling normal response from oA_SRM_VD_DLV_APPLY operation
|
||||
*/
|
||||
public void receiveResultoA_SRM_VD_DLV_APPLY(
|
||||
VdDlvApplyHandlerServiceServiceStub
|
||||
.OA_SRM_VD_DLV_APPLYResponseE
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* oA_SRM_VD_DLV_APPLY operation
|
||||
*/
|
||||
public void receiveErroroA_SRM_VD_DLV_APPLY(Exception e) {}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,52 @@
|
||||
/**
|
||||
* VenMatExtHandlerServiceServiceCallbackHandler.java
|
||||
*
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.srmoa;
|
||||
|
||||
/**
|
||||
* VenMatExtHandlerServiceServiceCallbackHandler Callback class, Users can extend this class and
|
||||
* implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class VenMatExtHandlerServiceServiceCallbackHandler {
|
||||
|
||||
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 VenMatExtHandlerServiceServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public VenMatExtHandlerServiceServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sRM_OA_VENMATEXT_RESULT method override this method
|
||||
* for handling normal response from sRM_OA_VENMATEXT_RESULT operation
|
||||
*/
|
||||
public void receiveResultsRM_OA_VENMATEXT_RESULT(
|
||||
com.weaver.seconddev.interfaces.srmoa.VenMatExtHandlerServiceServiceStub
|
||||
.SRM_OA_VENMATEXT_RESULTResponseE
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* sRM_OA_VENMATEXT_RESULT operation
|
||||
*/
|
||||
public void receiveErrorsRM_OA_VENMATEXT_RESULT(java.lang.Exception e) {}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,52 @@
|
||||
/**
|
||||
* VenMatExtsHandlerServiceServiceCallbackHandler.java
|
||||
*
|
||||
* <p>This file was auto-generated from WSDL by the Apache Axis2 version: 1.8.2 Built on : Jul 13,
|
||||
* 2022 (06:38:03 EDT)
|
||||
*/
|
||||
package com.weaver.seconddev.interfaces.srmoa;
|
||||
|
||||
/**
|
||||
* VenMatExtsHandlerServiceServiceCallbackHandler Callback class, Users can extend this class and
|
||||
* implement their own receiveResult and receiveError methods.
|
||||
*/
|
||||
public abstract class VenMatExtsHandlerServiceServiceCallbackHandler {
|
||||
|
||||
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 VenMatExtsHandlerServiceServiceCallbackHandler(Object clientData) {
|
||||
this.clientData = clientData;
|
||||
}
|
||||
|
||||
/** Please use this constructor if you don't want to set any clientData */
|
||||
public VenMatExtsHandlerServiceServiceCallbackHandler() {
|
||||
this.clientData = null;
|
||||
}
|
||||
|
||||
/** Get the client data */
|
||||
public Object getClientData() {
|
||||
return clientData;
|
||||
}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 call back method for sRM_OA_VENMATEXTS_RESULT method override this method
|
||||
* for handling normal response from sRM_OA_VENMATEXTS_RESULT operation
|
||||
*/
|
||||
public void receiveResultsRM_OA_VENMATEXTS_RESULT(
|
||||
com.weaver.seconddev.interfaces.srmoa.VenMatExtsHandlerServiceServiceStub
|
||||
.SRM_OA_VENMATEXTS_RESULTResponseE
|
||||
result) {}
|
||||
|
||||
/**
|
||||
* auto generated Axis2 Error handler override this method for handling error response from
|
||||
* sRM_OA_VENMATEXTS_RESULT operation
|
||||
*/
|
||||
public void receiveErrorsRM_OA_VENMATEXTS_RESULT(java.lang.Exception e) {}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue