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

org.jsmpp.session.OutbindRequest Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
package org.jsmpp.session;

import org.jsmpp.bean.Outbind;

/**
 * @author pmoerenhout
 */
public class OutbindRequest {
  private final String systemId;
  private final String password;

  public OutbindRequest(String systemId, String password) {
    this.systemId = systemId;
    this.password = password;
  }

  public OutbindRequest(Outbind outbind) {
    this(outbind.getSystemId(), outbind.getPassword());
  }

  public String getSystemId() {
    return this.systemId;
  }

  public String getPassword() {
    return this.password;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy