Package com.logica.smpp.pdu

Examples of com.logica.smpp.pdu.DeliverSMResp


   
    return ret;
  }
 
  public DeliverSMResp createROKResponse(DeliverSM deliverSM) {
    DeliverSMResp response = createDeliverSMResp(deliverSM);
    response.setCommandStatus(Data.ESME_ROK);
    return response;
  }
View Full Code Here


    response.setCommandStatus(Data.ESME_ROK);
    return response;
  }
 
  public DeliverSMResp createInternalErrorResponse(DeliverSM deliverSM) {
    DeliverSMResp response = createDeliverSMResp(deliverSM);
    response.setCommandStatus(VendorCommandStatus.ESME_INTERNAL_ERR);
    return response;
  }
View Full Code Here

    response.setCommandStatus(VendorCommandStatus.ESME_INTERNAL_ERR);
    return response;
  }
 
  public DeliverSMResp createGenericErrorResponse(DeliverSM deliverSM) {
    DeliverSMResp response = createDeliverSMResp(deliverSM);
    response.setCommandStatus(VendorCommandStatus.ESME_GENERIC_ERR);
    return response;
 
View Full Code Here

    response.setCommandStatus(VendorCommandStatus.ESME_GENERIC_ERR);
    return response;
 
   
  private DeliverSMResp createDeliverSMResp(DeliverSM deliverSM) {
    DeliverSMResp response = new DeliverSMResp();
    response.setOriginalRequest(deliverSM);
    response.setSequenceNumber(deliverSM.getSequenceNumber());
    return response;
 
View Full Code Here

TOP

Related Classes of com.logica.smpp.pdu.DeliverSMResp

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.