Examples of BindResp


Examples of org.jsmpp.bean.BindResp

     
      BindCommandTask task = new BindCommandTask(pduSender(), bindType,
                systemId, password, systemType, interfaceVersion, addrTon,
                addrNpi, addressRange);
     
      BindResp resp = (BindResp)executeSendCommand(task, timeout);
      OptionalParameter.Sc_interface_version sc_version = resp.getOptionalParameter(Sc_interface_version.class);
      if(sc_version != null) {
        logger.info("Other side reports smpp interface version {}", sc_version);
      }
       
    return resp.getSystemId();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.