Please wait. This can take some minutes ...
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.
org.restcomm.protocols.ss7.map.service.oam.MDTConfigurationImpl Maven / Gradle / Ivy
/*
* 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 org.restcomm.protocols.ss7.commonapp.api.primitives.MAPExtensionContainer;
import org.restcomm.protocols.ss7.commonapp.primitives.MAPExtensionContainerImpl;
import org.restcomm.protocols.ss7.map.api.service.oam.AreaScope;
import org.restcomm.protocols.ss7.map.api.service.oam.JobType;
import org.restcomm.protocols.ss7.map.api.service.oam.ListOfMeasurements;
import org.restcomm.protocols.ss7.map.api.service.oam.LoggingDuration;
import org.restcomm.protocols.ss7.map.api.service.oam.LoggingInterval;
import org.restcomm.protocols.ss7.map.api.service.oam.MDTConfiguration;
import org.restcomm.protocols.ss7.map.api.service.oam.ReportAmount;
import org.restcomm.protocols.ss7.map.api.service.oam.ReportInterval;
import org.restcomm.protocols.ss7.map.api.service.oam.ReportingTrigger;
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.ASNInteger;
/**
*
* @author sergey vetyutnev
* @author yulianoifa
*
*/
@ASNTag(asnClass=ASNClass.UNIVERSAL,tag=16,constructed=true,lengthIndefinite=false)
public class MDTConfigurationImpl implements MDTConfiguration {
@ASNProperty(asnClass=ASNClass.UNIVERSAL,tag=10,constructed=false,index=0)
private ASNJobTypeImpl jobType;
@ASNProperty(asnClass=ASNClass.UNIVERSAL,tag=16,constructed=true,index=-1,defaultImplementation = AreaScopeImpl.class)
private AreaScope areaScope;
@ASNProperty(asnClass=ASNClass.UNIVERSAL,tag=4,constructed=false,index=-1,defaultImplementation = ListOfMeasurementsImpl.class)
private ListOfMeasurements listOfMeasurements;
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=0,constructed=false,index=-1, defaultImplementation = ReportingTriggerImpl.class)
private ReportingTrigger reportingTrigger;
private ASNReportIntervalImpl reportInterval;
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=1,constructed=false,index=-1)
private ASNReportAmountImpl reportAmount;
private ASNInteger eventThresholdRSRP;
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=2,constructed=false,index=-1)
private ASNInteger eventThresholdRSRQ;
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=3,constructed=false,index=-1)
private ASNLoggingIntervalImpl loggingInterval;
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=4,constructed=false,index=-1)
private ASNLoggingDurationImpl loggingDuration;
@ASNProperty(asnClass=ASNClass.CONTEXT_SPECIFIC,tag=5,constructed=true,index=-1, defaultImplementation = MAPExtensionContainerImpl.class)
private MAPExtensionContainer extensionContainer;
public MDTConfigurationImpl() {
}
public MDTConfigurationImpl(JobType jobType, AreaScope areaScope, ListOfMeasurements listOfMeasurements, ReportingTrigger reportingTrigger,
ReportInterval reportInterval, ReportAmount reportAmount, Integer eventThresholdRSRP, Integer eventThresholdRSRQ, LoggingInterval loggingInterval,
LoggingDuration loggingDuration, MAPExtensionContainer extensionContainer) {
if(jobType!=null)
this.jobType = new ASNJobTypeImpl(jobType);
this.areaScope = areaScope;
this.listOfMeasurements = listOfMeasurements;
this.reportingTrigger = reportingTrigger;
if(reportInterval!=null)
this.reportInterval = new ASNReportIntervalImpl(reportInterval);
if(reportAmount!=null)
this.reportAmount = new ASNReportAmountImpl(reportAmount);
if(eventThresholdRSRP!=null)
this.eventThresholdRSRP = new ASNInteger(eventThresholdRSRP,"EventThresholdRSRP",0,97,false);
if(eventThresholdRSRQ!=null)
this.eventThresholdRSRQ = new ASNInteger(eventThresholdRSRQ,"EventThresholdRSRQ",0,34,false);
if(loggingInterval!=null)
this.loggingInterval = new ASNLoggingIntervalImpl(loggingInterval);
if(loggingDuration!=null)
this.loggingDuration = new ASNLoggingDurationImpl(loggingDuration);
this.extensionContainer = extensionContainer;
}
public JobType getJobType() {
if(jobType==null)
return null;
return jobType.getType();
}
public AreaScope getAreaScope() {
return areaScope;
}
public ListOfMeasurements getListOfMeasurements() {
return listOfMeasurements;
}
public ReportingTrigger getReportingTrigger() {
return reportingTrigger;
}
public ReportInterval getReportInterval() {
if(reportInterval==null)
return null;
return reportInterval.getType();
}
public ReportAmount getReportAmount() {
if(reportAmount==null)
return null;
return reportAmount.getType();
}
public Integer getEventThresholdRSRP() {
if(eventThresholdRSRP==null)
return null;
return eventThresholdRSRP.getIntValue();
}
public Integer getEventThresholdRSRQ() {
if(eventThresholdRSRQ==null)
return null;
return eventThresholdRSRQ.getIntValue();
}
public LoggingInterval getLoggingInterval() {
if(loggingInterval==null)
return null;
return loggingInterval.getType();
}
public LoggingDuration getLoggingDuration() {
if(loggingDuration==null)
return null;
return loggingDuration.getType();
}
public MAPExtensionContainer getExtensionContainer() {
return extensionContainer;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("MDTConfiguration [");
if (this.jobType != null) {
sb.append("jobType=");
sb.append(this.jobType.getType());
sb.append(", ");
}
if (this.areaScope != null) {
sb.append("areaScope=");
sb.append(this.areaScope.toString());
sb.append(", ");
}
if (this.listOfMeasurements != null) {
sb.append("listOfMeasurements=");
sb.append(this.listOfMeasurements.toString());
sb.append(", ");
}
if (this.reportingTrigger != null) {
sb.append("reportingTrigger=");
sb.append(this.reportingTrigger.toString());
sb.append(", ");
}
if (this.reportInterval != null) {
sb.append("reportInterval=");
sb.append(this.reportInterval.getType());
sb.append(", ");
}
if (this.reportAmount != null) {
sb.append("reportAmount=");
sb.append(this.reportAmount.getType());
sb.append(", ");
}
if (this.eventThresholdRSRP != null) {
sb.append("eventThresholdRSRP=");
sb.append(this.eventThresholdRSRP.getValue());
sb.append(", ");
}
if (this.eventThresholdRSRQ != null) {
sb.append("eventThresholdRSRQ=");
sb.append(this.eventThresholdRSRQ.getValue());
sb.append(", ");
}
if (this.loggingInterval != null) {
sb.append("loggingInterval=");
sb.append(this.loggingInterval.getValue());
sb.append(", ");
}
if (this.loggingDuration != null) {
sb.append("loggingDuration=");
sb.append(this.loggingDuration.getValue());
sb.append(", ");
}
if (this.extensionContainer != null) {
sb.append("extensionContainer=");
sb.append(this.extensionContainer.toString());
sb.append(", ");
}
sb.append("]");
return sb.toString();
}
@ASNValidate
public void validateElement() throws ASNParsingComponentException {
if(jobType==null)
throw new ASNParsingComponentException("job type should be set for MDT configuration", ASNParsingComponentExceptionReason.MistypedParameter);
}
}