/* * TeleStax, Open Source Cloud Communications * Copyright 2012, Telestax Inc and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.mobicents.protocols.ss7.cap.api.service.circuitSwitchedCall.primitive; import java.io.Serializable; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.CallAcceptedSpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.DpSpecificInfoAlt; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.OAbandonSpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.OAnswerSpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.OCalledPartyBusySpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.OChangeOfPositionSpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.ODisconnectSpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.OMidCallSpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.ONoAnswerSpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.OTermSeizedSpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.RouteSelectFailureSpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.TAnswerSpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.TBusySpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.TChangeOfPositionSpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.TDisconnectSpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.TMidCallSpecificInfo; import org.mobicents.protocols.ss7.cap.api.EsiBcsm.TNoAnswerSpecificInfo; /** * <code> EventSpecificInformationBCSM {PARAMETERS-BOUND : bound} ::= CHOICE { routeSelectFailureSpecificInfo [2] SEQUENCE { failureCause [0] Cause {bound} OPTIONAL, ... }, oCalledPartyBusySpecificInfo [3] SEQUENCE { busyCause [0] Cause {bound} OPTIONAL, ... }, oNoAnswerSpecificInfo [4] SEQUENCE { -- no specific info defined ... }, oAnswerSpecificInfo [5] SEQUENCE { destinationAddress [50] CalledPartyNumber {bound} OPTIONAL, or-Call [51] NULL OPTIONAL, forwardedCall [52] NULL OPTIONAL, chargeIndicator [53] ChargeIndicator OPTIONAL, ext-basicServiceCode [54] Ext-BasicServiceCode OPTIONAL, ext-basicServiceCode2 [55] Ext-BasicServiceCode OPTIONAL, ... }, oMidCallSpecificInfo [6] SEQUENCE { midCallEvents [1] CHOICE { dTMFDigitsCompleted [3] Digits {bound}, dTMFDigitsTimeOut [4] Digits {bound} } OPTIONAL, ... }, oDisconnectSpecificInfo [7] SEQUENCE { releaseCause [0] Cause {bound} OPTIONAL, ... }, tBusySpecificInfo [8] SEQUENCE { busyCause [0] Cause {bound} OPTIONAL, callForwarded [50] NULL OPTIONAL, routeNotPermitted [51] NULL OPTIONAL, forwardingDestinationNumber [52] CalledPartyNumber {bound} OPTIONAL, ... }, tNoAnswerSpecificInfo [9] SEQUENCE { callForwarded [50] NULL OPTIONAL, forwardingDestinationNumber [52] CalledPartyNumber {bound} OPTIONAL, ... }, tAnswerSpecificInfo [10] SEQUENCE { destinationAddress [50] CalledPartyNumber {bound} OPTIONAL, or-Call [51] NULL OPTIONAL, forwardedCall [52] NULL OPTIONAL, chargeIndicator [53] ChargeIndicator OPTIONAL, ext-basicServiceCode [54] Ext-BasicServiceCode OPTIONAL, ext-basicServiceCode2 [55] Ext-BasicServiceCode OPTIONAL, ... }, tMidCallSpecificInfo [11] SEQUENCE { midCallEvents [1] CHOICE { dTMFDigitsCompleted [3] Digits {bound}, dTMFDigitsTimeOut [4] Digits {bound} } OPTIONAL, ... }, tDisconnectSpecificInfo [12] SEQUENCE { releaseCause [0] Cause {bound} OPTIONAL, ... }, oTermSeizedSpecificInfo [13] SEQUENCE { locationInformation [50] LocationInformation OPTIONAL, ... }, callAcceptedSpecificInfo [20] SEQUENCE { locationInformation [50] LocationInformation OPTIONAL, ... }, oAbandonSpecificInfo [21] SEQUENCE { routeNotPermitted [50] NULL OPTIONAL, ... }, oChangeOfPositionSpecificInfo [50] SEQUENCE { locationInformation [50] LocationInformation OPTIONAL, ..., metDPCriteriaList [51] MetDPCriteriaList {bound} OPTIONAL }, tChangeOfPositionSpecificInfo [51] SEQUENCE { locationInformation [50] LocationInformation OPTIONAL, ..., metDPCriteriaList [51] MetDPCriteriaList {bound} OPTIONAL }, dpSpecificInfoAlt [52] DpSpecificInfoAlt {bound} } -- Indicates the call related information specific to the event. </code> * * * @author sergey vetyutnev * */ public interface EventSpecificInformationBCSM extends Serializable { RouteSelectFailureSpecificInfo getRouteSelectFailureSpecificInfo(); OCalledPartyBusySpecificInfo getOCalledPartyBusySpecificInfo(); ONoAnswerSpecificInfo getONoAnswerSpecificInfo(); OAnswerSpecificInfo getOAnswerSpecificInfo(); OMidCallSpecificInfo getOMidCallSpecificInfo(); ODisconnectSpecificInfo getODisconnectSpecificInfo(); TBusySpecificInfo getTBusySpecificInfo(); TNoAnswerSpecificInfo getTNoAnswerSpecificInfo(); TAnswerSpecificInfo getTAnswerSpecificInfo(); TMidCallSpecificInfo getTMidCallSpecificInfo(); TDisconnectSpecificInfo getTDisconnectSpecificInfo(); OTermSeizedSpecificInfo getOTermSeizedSpecificInfo(); CallAcceptedSpecificInfo getCallAcceptedSpecificInfo(); OAbandonSpecificInfo getOAbandonSpecificInfo(); OChangeOfPositionSpecificInfo getOChangeOfPositionSpecificInfo(); TChangeOfPositionSpecificInfo getTChangeOfPositionSpecificInfo(); DpSpecificInfoAlt getDpSpecificInfoAlt(); }