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.inap.service.circuitSwitchedCall;
import org.restcomm.protocols.ss7.inap.api.INAPMessageType;
import org.restcomm.protocols.ss7.inap.api.INAPOperationCode;
import org.restcomm.protocols.ss7.inap.api.service.circuitSwitchedCall.UpdateRequest;
import org.restcomm.protocols.ss7.inap.api.service.circuitSwitchedCall.cs1plus.ApplicationID;
import org.restcomm.protocols.ss7.inap.api.service.circuitSwitchedCall.cs1plus.DataItemID;
import org.restcomm.protocols.ss7.inap.api.service.circuitSwitchedCall.cs1plus.DataItemInformation;
import org.restcomm.protocols.ss7.inap.service.circuitSwitchedCall.cs1plus.ApplicationIDImpl;
import org.restcomm.protocols.ss7.inap.service.circuitSwitchedCall.cs1plus.DataItemIDImpl;
import org.restcomm.protocols.ss7.inap.service.circuitSwitchedCall.cs1plus.DataItemInformationImpl;
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.ASNOctetString;
import io.netty.buffer.ByteBuf;
/**
*
* @author yulian.oifa
*
*/
@ASNTag(asnClass = ASNClass.UNIVERSAL,tag = 16,constructed = true,lengthIndefinite = false)
public class UpdateRequestImpl extends CircuitSwitchedCallMessageImpl implements UpdateRequest {
private static final long serialVersionUID = 1L;
@ASNProperty(asnClass = ASNClass.CONTEXT_SPECIFIC,tag = 1,constructed = false,index = -1)
private ASNOctetString operationID;
@ASNProperty(asnClass = ASNClass.CONTEXT_SPECIFIC,tag = 2,constructed = false,index = -1,defaultImplementation = ApplicationIDImpl.class)
private ApplicationID applicationID;
@ASNProperty(asnClass = ASNClass.CONTEXT_SPECIFIC,tag = 3,constructed = true,index = -1,defaultImplementation = DataItemIDImpl.class)
private DataItemID dataItemID;
@ASNProperty(asnClass = ASNClass.CONTEXT_SPECIFIC,tag = 4,constructed = true,index = -1,defaultImplementation = DataItemInformationImpl.class)
private DataItemInformation dataItemInformation;
public UpdateRequestImpl() {
}
public UpdateRequestImpl(ByteBuf operationID,ApplicationID applicationID,DataItemID dataItemID,DataItemInformation dataItemInformation) {
if(operationID!=null)
this.operationID=new ASNOctetString(operationID,"OperationID",null,null,false);
this.applicationID=applicationID;
this.dataItemID=dataItemID;
this.dataItemInformation=dataItemInformation;
}
@Override
public INAPMessageType getMessageType() {
return INAPMessageType.update_Request;
}
@Override
public int getOperationCode() {
return INAPOperationCode.update;
}
@Override
public ByteBuf getOperationID()
{
if(operationID==null)
return null;
return operationID.getValue();
}
@Override
public ApplicationID getApplicationID() {
return applicationID;
}
@Override
public DataItemID getDataItemID() {
return dataItemID;
}
@Override
public DataItemInformation getDataItemInformation() {
return dataItemInformation;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("RetrieveRequestIndication [");
this.addInvokeIdInfo(sb);
if (this.operationID != null && this.operationID.getValue()!=null) {
sb.append(", operationID=");
sb.append(operationID.printDataArr());
}
if (this.applicationID != null) {
sb.append(", applicationID=");
sb.append(applicationID.toString());
}
if (this.dataItemID != null) {
sb.append(", dataItemID=");
sb.append(dataItemID);
}
if (this.dataItemInformation != null) {
sb.append(", dataItemInformation=");
sb.append(dataItemInformation);
}
sb.append("]");
return sb.toString();
}
@ASNValidate
public void validateElement() throws ASNParsingComponentException {
if(operationID==null)
throw new ASNParsingComponentException("operation ID should be set for update request", ASNParsingComponentExceptionReason.MistypedRootParameter);
if(applicationID==null)
throw new ASNParsingComponentException("application ID should be set for update request", ASNParsingComponentExceptionReason.MistypedRootParameter);
if(dataItemID==null)
throw new ASNParsingComponentException("data item ID should be set for update request", ASNParsingComponentExceptionReason.MistypedRootParameter);
if(dataItemInformation==null)
throw new ASNParsingComponentException("data item information should be set for update request", ASNParsingComponentExceptionReason.MistypedRootParameter);
}
}