All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.restcomm.protocols.ss7.sccp.impl.message.SccpConnReferencedMessageImpl Maven / Gradle / Ivy

There is a newer version: 10.0.37-java11
Show newest version
package org.restcomm.protocols.ss7.sccp.impl.message;

import org.restcomm.protocols.ss7.sccp.message.SccpConnMessage;
import org.restcomm.protocols.ss7.sccp.parameter.LocalReference;

public abstract class SccpConnReferencedMessageImpl extends SccpMessageImpl implements SccpConnMessage {
    protected LocalReference destinationLocalReferenceNumber;

    // for AK, CREF, DT1, DT2, ERR messages it isn't sent over network, used in send message methods only
    protected LocalReference sourceLocalReferenceNumber;

    protected SccpConnReferencedMessageImpl(int maxDataLen, int type, int sls, int localSsn) {
        super(maxDataLen, type, sls, localSsn);
    }

    protected SccpConnReferencedMessageImpl(int maxDataLen, int type, int incomingOpc, int incomingDpc, int incomingSls, int networkId) {
        super(maxDataLen, type, incomingOpc, incomingDpc, incomingSls, networkId);
    }

    public LocalReference getDestinationLocalReferenceNumber() {
        return destinationLocalReferenceNumber;
    }

    public void setDestinationLocalReferenceNumber(LocalReference number) {
        this.destinationLocalReferenceNumber = number;
    }

    public LocalReference getSourceLocalReferenceNumber() {
        return sourceLocalReferenceNumber;
    }

    public void setSourceLocalReferenceNumber(LocalReference sourceLocalReferenceNumber) {
        this.sourceLocalReferenceNumber = sourceLocalReferenceNumber;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy