/protocols/jain-megaco/megaco-api/src/main/java/javax/megaco/pkg/RTPPkg/RTPPltransEvt.java
http://mobicents.googlecode.com/ · Java · 65 lines · 21 code · 9 blank · 35 comment · 0 complexity · 1445c4f0b4efd892f6eeed498a336bd8 MD5 · raw file
- package javax.megaco.pkg.RTPPkg;
-
- import javax.megaco.pkg.MegacoPkg;
- import javax.megaco.pkg.PkgEventItem;
-
- /**
- * The MEGACO Payload Transition event class extends the PkgEventItem class.
- * This is a final class. This class defines Payload Transition event of MEGACO
- * RTP package. The methods shall define that this event item belongs to the RTP
- * package.
- */
- public class RTPPltransEvt extends PkgEventItem {
-
- /**
- * Identifies Payload Transition event of the MEGACO RTP Package. Its value
- * shall be set equal to 0x0001.
- */
- public static final int RTP_PLTRANS_EVENT = 0x0001;
-
- /**
- * Constructs a Jain MEGACO Object representing event Item of the MEGACO
- * Package for event Payload Transition and package as RTP.
- */
- public RTPPltransEvt() {
- super();
- super.eventId = RTP_PLTRANS_EVENT;
- super.itemId = RTP_PLTRANS_EVENT;
- super.packageId = new RTPPkg();
- }
-
- /**
- * This method is used to get the event identifier from an Event Item
- * object. The implementations of this method in this class returns the id
- * of the Payload Transition event of RTP Package.
- *
- * @return It shall return {@link RTP_PLTRANS_EVENT}.
- */
- public int getEventId() {
- return super.eventId;
- }
-
- /**
- * This method is used to get the item identifier from an Item object. The
- * implementations of this method in this class returns the id of the
- * Payload Transition event of RTP Package.
- *
- * @return It shall return {@link RTP_PLTRANS_EVENT}.
- */
- public int getItemId() {
- return super.itemId;
- }
-
- /**
- * This method gets the package id to which the item belongs. Since the
- * Payload Transition event is defined in the RTP Package of MEGACO
- * protocol, this method returns the RTPPkg class object.
- *
- * @return The package is RTPPkg.
- */
- public MegacoPkg getItemsPkgId() {
-
- return super.getItemsPkgId();
- }
-
- }