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.oam;
import java.util.List;
import org.restcomm.protocols.ss7.commonapp.api.primitives.LAIFixedLength;
import org.restcomm.protocols.ss7.commonapp.api.primitives.MAPExtensionContainer;
import org.restcomm.protocols.ss7.commonapp.api.subscriberInformation.EUtranCgi;
import org.restcomm.protocols.ss7.commonapp.api.subscriberInformation.RAIdentity;
import org.restcomm.protocols.ss7.commonapp.api.subscriberInformation.TAId;
import org.restcomm.protocols.ss7.commonapp.primitives.LAIFixedLengthListWrapperImpl;
import org.restcomm.protocols.ss7.commonapp.primitives.MAPExtensionContainerImpl;
import org.restcomm.protocols.ss7.commonapp.subscriberInformation.EUtranCgiListWrapperImpl;
import org.restcomm.protocols.ss7.commonapp.subscriberInformation.RAIdentityListWrapperImpl;
import org.restcomm.protocols.ss7.commonapp.subscriberInformation.TAIdListWrapperImpl;
import org.restcomm.protocols.ss7.map.api.primitives.GlobalCellId;
import org.restcomm.protocols.ss7.map.api.service.oam.AreaScope;
import org.restcomm.protocols.ss7.map.primitives.GlobalCellIdListWrapperImpl;
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;
/**
*
* @author sergey vetyutnev
* @author yulianoifa
*
*/
@ASNTag(asnClass=ASNClass.UNIVERSAL,tag=16,constructed=true,lengthIndefinite=false)
public class AreaScopeImpl implements AreaScope {
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=0,constructed=true,index=-1)
private GlobalCellIdListWrapperImpl cgiList;
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=1,constructed=true,index=-1)
private EUtranCgiListWrapperImpl eUtranCgiList;
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=2,constructed=true,index=-1)
private RAIdentityListWrapperImpl routingAreaIdList;
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=3,constructed=true,index=-1)
private LAIFixedLengthListWrapperImpl locationAreaIdList;
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=4,constructed=true,index=-1)
private TAIdListWrapperImpl trackingAreaIdList;
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=5,constructed=true,index=-1, defaultImplementation = MAPExtensionContainerImpl.class)
private MAPExtensionContainer extensionContainer;
public AreaScopeImpl() {
}
public AreaScopeImpl(List cgiList, List eUtranCgiList, List routingAreaIdList,
List locationAreaIdList, List trackingAreaIdList, MAPExtensionContainer extensionContainer) {
if(cgiList!=null)
this.cgiList = new GlobalCellIdListWrapperImpl(cgiList);
if(eUtranCgiList!=null)
this.eUtranCgiList = new EUtranCgiListWrapperImpl(eUtranCgiList);
if(routingAreaIdList!=null)
this.routingAreaIdList = new RAIdentityListWrapperImpl(routingAreaIdList);
if(locationAreaIdList!=null)
this.locationAreaIdList = new LAIFixedLengthListWrapperImpl(locationAreaIdList);
if(trackingAreaIdList!=null)
this.trackingAreaIdList = new TAIdListWrapperImpl(trackingAreaIdList);
this.extensionContainer = extensionContainer;
}
public List getCgiList() {
if(cgiList==null)
return null;
return cgiList.getGlobalCellIdList();
}
public List getEUutranCgiList() {
if(eUtranCgiList==null)
return null;
return eUtranCgiList.getEUtranCgiList();
}
public List getRoutingAreaIdList() {
if(routingAreaIdList==null)
return null;
return routingAreaIdList.getRAIdentityList();
}
public List getLocationAreaIdList() {
if(locationAreaIdList==null)
return null;
return locationAreaIdList.getLAIFixedLengthList();
}
public List getTrackingAreaIdList() {
if(trackingAreaIdList==null)
return null;
return trackingAreaIdList.getTAIdList();
}
public MAPExtensionContainer getExtensionContainer() {
return extensionContainer;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("AreaScope [");
if (this.cgiList != null && this.cgiList.getGlobalCellIdList()!=null) {
sb.append("cgiList=[");
boolean firstItem = true;
for (GlobalCellId be : this.cgiList.getGlobalCellIdList()) {
if (firstItem)
firstItem = false;
else
sb.append(", ");
sb.append(be.toString());
}
sb.append("]");
}
if (this.eUtranCgiList != null && this.eUtranCgiList.getEUtranCgiList()!=null) {
sb.append("eUtranCgiList=[");
boolean firstItem = true;
for (EUtranCgi be : this.eUtranCgiList.getEUtranCgiList()) {
if (firstItem)
firstItem = false;
else
sb.append(", ");
sb.append(be.toString());
}
sb.append("]");
}
if (this.routingAreaIdList != null && this.routingAreaIdList.getRAIdentityList()!=null) {
sb.append("routingAreaIdList=[");
boolean firstItem = true;
for (RAIdentity be : this.routingAreaIdList.getRAIdentityList()) {
if (firstItem)
firstItem = false;
else
sb.append(", ");
sb.append(be.toString());
}
sb.append("]");
}
if (this.locationAreaIdList != null && this.locationAreaIdList.getLAIFixedLengthList()!=null) {
sb.append("locationAreaIdList=[");
boolean firstItem = true;
for (LAIFixedLength be : this.locationAreaIdList.getLAIFixedLengthList()) {
if (firstItem)
firstItem = false;
else
sb.append(", ");
sb.append(be.toString());
}
sb.append("]");
}
if (this.trackingAreaIdList != null && this.trackingAreaIdList.getTAIdList()!=null) {
sb.append("trackingAreaIdList=[");
boolean firstItem = true;
for (TAId be : this.trackingAreaIdList.getTAIdList()) {
if (firstItem)
firstItem = false;
else
sb.append(", ");
sb.append(be.toString());
}
sb.append("]");
}
if (this.extensionContainer != null) {
sb.append(", extensionContainer=");
sb.append(this.extensionContainer.toString());
}
sb.append("]");
return sb.toString();
}
@ASNValidate
public void validateElement() throws ASNParsingComponentException {
if(cgiList!=null && cgiList.getGlobalCellIdList()!=null && cgiList.getGlobalCellIdList().size()>32)
throw new ASNParsingComponentException("cgi list size should be betwen 1 and 32 for area scope", ASNParsingComponentExceptionReason.MistypedParameter);
if(eUtranCgiList!=null && eUtranCgiList.getEUtranCgiList()!=null && eUtranCgiList.getEUtranCgiList().size()>32)
throw new ASNParsingComponentException("cgi list size should be betwen 1 and 32 for area scope", ASNParsingComponentExceptionReason.MistypedParameter);
if(routingAreaIdList!=null && routingAreaIdList.getRAIdentityList()!=null && routingAreaIdList.getRAIdentityList().size()>8)
throw new ASNParsingComponentException("routing area list size should be betwen 1 and 8 for area scope", ASNParsingComponentExceptionReason.MistypedParameter);
if(locationAreaIdList!=null && locationAreaIdList.getLAIFixedLengthList()!=null && locationAreaIdList.getLAIFixedLengthList().size()>8)
throw new ASNParsingComponentException("location area ID list size should be betwen 1 and 8 for area scope", ASNParsingComponentExceptionReason.MistypedParameter);
if(trackingAreaIdList!=null && trackingAreaIdList.getTAIdList()!=null && trackingAreaIdList.getTAIdList().size()>8)
throw new ASNParsingComponentException("tracking area ID list size should be betwen 1 and 8 for area scope", ASNParsingComponentExceptionReason.MistypedParameter);
}
}