本文整理了Java中com.cloudhopper.smpp.type.Address.getTon()
方法的一些代码示例,展示了Address.getTon()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Address.getTon()
方法的具体详情如下:
包路径:com.cloudhopper.smpp.type.Address
类名称:Address
方法名:getTon
暂无
代码示例来源:origin: org.mobicents.smsc/smpp
public boolean isSourceAddressMatching(Address sourceAddress) {
// Check sourceTon
if (this.sourceTon != -1 && this.sourceTon != sourceAddress.getTon()) {
return false;
}
// Check sourceNpi
if (this.sourceNpi != -1 && this.sourceNpi != sourceAddress.getNpi()) {
return false;
}
// Check sourceAddress
Matcher m = this.sourceAddressRangePattern.matcher(sourceAddress.getAddress());
if (m.matches()) {
return true;
}
return false;
}
代码示例来源:origin: org.restcomm.smpp/smpp-extensions
public boolean isSourceAddressMatching(Address sourceAddress) {
// Check sourceTon
if (this.sourceTon != -1 && this.sourceTon != sourceAddress.getTon()) {
return false;
}
// Check sourceNpi
if (this.sourceNpi != -1 && this.sourceNpi != sourceAddress.getNpi()) {
return false;
}
// Check sourceAddress
Matcher m = this.sourceAddressRangePattern.matcher(sourceAddress.getAddress());
if (m.matches()) {
return true;
}
return false;
}
代码示例来源:origin: org.mobicents.smsc/smpp
if (esme.getEsmeTon() != -1 && esme.getEsmeTon() != bindRequestAddressRange.getTon()) {
logger.error(String.format("Received BIND request with TON=%d but configured TON=%d",
bindRequestAddressRange.getTon(), esme.getEsmeTon()));
throw new SmppProcessingException(SmppConstants.STATUS_INVBNDSTS);
代码示例来源:origin: org.restcomm.smpp/smpp-extensions
if (esme.getEsmeTon() != -1 && esme.getEsmeTon() != bindRequestAddressRange.getTon()) {
logger.error(String.format("Received BIND request with TON=%d but configured TON=%d",
bindRequestAddressRange.getTon(), esme.getEsmeTon()));
throw new SmppProcessingException(SmppConstants.STATUS_INVBNDSTS);
代码示例来源:origin: org.mobicents.smsc/smpp-server-ra-ra
tracer.warning(String
.format("Incoming SUBMIT_SM's sequence_number=%d source_addr_ton=%d source_addr_npi=%d source_addr=%s doesn't match with configured ESME name=%s source_addr_ton=%d source_addr_npi=%d source_addr=%s",
submitSm.getSequenceNumber(), sourceAddress.getTon(), sourceAddress.getNpi(),
sourceAddress.getAddress(), this.esme.getName(), this.esme.getSourceTon(),
this.esme.getSourceNpi(), this.esme.getSourceAddressRange()));
tracer.warning(String
.format("Incoming DATA_SM's sequence_number=%d source_addr_ton=%d source_addr_npi=%d source_addr=%s doesn't match with configured ESME name=%s source_addr_ton=%d source_addr_npi=%d source_addr=%s",
dataSm.getSequenceNumber(), sourceAddress.getTon(), sourceAddress.getNpi(),
sourceAddress.getAddress(), this.esme.getName(), this.esme.getSourceTon(),
this.esme.getSourceNpi(), this.esme.getSourceAddressRange()));
tracer.warning(String
.format("Incoming DELIVER_SM's sequence_number=%d source_addr_ton=%d source_addr_npi=%d source_addr=%s doesn't match with configured ESME name=%s source_addr_ton=%d source_addr_npi=%d source_addr=%s",
deliverSm.getSequenceNumber(), sourceAddress.getTon(), sourceAddress.getNpi(),
sourceAddress.getAddress(), this.esme.getName(), this.esme.getSourceTon(),
this.esme.getSourceNpi(), this.esme.getSourceAddressRange()));
tracer.warning(String
.format("Incoming SUBMIT_MULTI's sequence_number=%d source_addr_ton=%d source_addr_npi=%d source_addr=%s doesn't match with configured ESME name=%s source_addr_ton=%d source_addr_npi=%d source_addr=%s",
submitMulti.getSequenceNumber(), sourceAddress.getTon(), sourceAddress.getNpi(),
sourceAddress.getAddress(), this.esme.getName(), this.esme.getSourceTon(),
this.esme.getSourceNpi(), this.esme.getSourceAddressRange()));
内容来源于网络,如有侵权,请联系作者删除!