Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Mobius Software LTD
* Copyright 2019, Mobius Software LTD and individual contributors
* by the @authors tag.
*
* This program is free software: you can redistribute it and/or modify
* under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see
*/
package org.restcomm.protocols.ss7.map.service.sms;
import org.restcomm.protocols.ss7.commonapp.api.primitives.ISDNAddressString;
import org.restcomm.protocols.ss7.commonapp.api.primitives.MAPExtensionContainer;
import org.restcomm.protocols.ss7.commonapp.primitives.ISDNAddressStringImpl;
import org.restcomm.protocols.ss7.commonapp.primitives.MAPExtensionContainerImpl;
import org.restcomm.protocols.ss7.map.api.primitives.LMSI;
import org.restcomm.protocols.ss7.map.api.service.lsm.AdditionalNumber;
import org.restcomm.protocols.ss7.map.api.service.sms.LocationInfoWithLMSI;
import org.restcomm.protocols.ss7.map.primitives.LMSIImpl;
import org.restcomm.protocols.ss7.map.service.lsm.AdditionalNumberWrapperImpl;
import com.mobius.software.telco.protocols.ss7.asn.ASNClass;
import com.mobius.software.telco.protocols.ss7.asn.annotations.ASNProperty;
import com.mobius.software.telco.protocols.ss7.asn.annotations.ASNTag;
import com.mobius.software.telco.protocols.ss7.asn.annotations.ASNValidate;
import com.mobius.software.telco.protocols.ss7.asn.exceptions.ASNParsingComponentException;
import com.mobius.software.telco.protocols.ss7.asn.exceptions.ASNParsingComponentExceptionReason;
import com.mobius.software.telco.protocols.ss7.asn.primitives.ASNNull;
/**
*
* @author sergey vetyutnev
* @author yulianoifa
*
*/
@ASNTag(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=0,constructed=true,lengthIndefinite=false)
public class LocationInfoWithLMSIImpl implements LocationInfoWithLMSI {
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=1,constructed=false,index=0, defaultImplementation = ISDNAddressStringImpl.class)
private ISDNAddressString networkNodeNumber;
@ASNProperty(asnClass=ASNClass.UNIVERSAL,tag=4,constructed=false,index=-1, defaultImplementation = LMSIImpl.class)
private LMSI lmsi;
@ASNProperty(asnClass=ASNClass.UNIVERSAL,tag=16,constructed=true,index=-1, defaultImplementation = MAPExtensionContainerImpl.class)
private MAPExtensionContainer extensionContainer;
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=5,constructed=false,index=-1)
private ASNNull gprsNodeIndicator;
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=6,constructed=true,index=-1)
private AdditionalNumberWrapperImpl additionalNumber;
public LocationInfoWithLMSIImpl() {
}
public LocationInfoWithLMSIImpl(ISDNAddressString networkNodeNumber, LMSI lmsi, MAPExtensionContainer extensionContainer, boolean gprsNodeIndicator,
AdditionalNumber additionalNumber) {
this.networkNodeNumber = networkNodeNumber;
this.lmsi = lmsi;
this.extensionContainer = extensionContainer;
if(gprsNodeIndicator)
this.gprsNodeIndicator = new ASNNull();
if(additionalNumber!=null)
this.additionalNumber = new AdditionalNumberWrapperImpl(additionalNumber);
}
public ISDNAddressString getNetworkNodeNumber() {
return this.networkNodeNumber;
}
public LMSI getLMSI() {
return this.lmsi;
}
public MAPExtensionContainer getExtensionContainer() {
return this.extensionContainer;
}
public boolean getGprsNodeIndicator() {
return gprsNodeIndicator!=null;
}
public AdditionalNumber getAdditionalNumber() {
if(this.additionalNumber==null)
return null;
return this.additionalNumber.getAdditionalNumber();
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("LocationInfoWithLMSI [");
if (this.networkNodeNumber != null) {
sb.append("networkNodeNumber=");
sb.append(this.networkNodeNumber.toString());
}
if (this.lmsi != null) {
sb.append(", lmsi=");
sb.append(this.lmsi.toString());
}
if (this.extensionContainer != null) {
sb.append(", extensionContainer=");
sb.append(this.extensionContainer.toString());
}
if (this.gprsNodeIndicator!=null) {
sb.append(", gprsNodeIndicator");
}
if (this.additionalNumber != null) {
sb.append(", additionalNumber=");
sb.append(this.additionalNumber.getAdditionalNumber());
}
sb.append("]");
return sb.toString();
}
@ASNValidate
public void validateElement() throws ASNParsingComponentException {
if(networkNodeNumber==null)
throw new ASNParsingComponentException("minimum delivery time value should be set for ipsmgw guidance", ASNParsingComponentExceptionReason.MistypedParameter);
}
}