Package org.jsmpp.util

Examples of org.jsmpp.util.AbsoluteTimeFormatter


  }

  @Override
  protected void onInit() throws Exception {
    if (this.timeFormatter == null) {
      this.timeFormatter = new AbsoluteTimeFormatter();
    }

    Assert.notNull(this.smppSession, "the smppSession must not be null");
    Assert.isTrue(!this.smppSession.getBindType().equals(BindType.BIND_RX),
        "the BindType must support message production: BindType.TX or BindType.TRX only supported");
View Full Code Here


   */
  protected SmesMessageSpecification reset() {

    // configuration params - should they be reset?
    maxLengthSmsMessages = 140;
    timeFormatter = new AbsoluteTimeFormatter();

    sourceAddress = null;
    destinationAddress = null;
    serviceType = "CMT";
    sourceAddressTypeOfNumber = TypeOfNumber.UNKNOWN;
View Full Code Here

TOP

Related Classes of org.jsmpp.util.AbsoluteTimeFormatter

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.