/protocols/jain-megaco/megaco-api/src/main/java/javax/megaco/pkg/AnalogLineSPkg/AnalogLineSOnEvt.java
http://mobicents.googlecode.com/ · Java · 65 lines · 21 code · 9 blank · 35 comment · 0 complexity · a432ea2175383c0f1132938290717c25 MD5 · raw file
- package javax.megaco.pkg.AnalogLineSPkg;
-
- import javax.megaco.pkg.MegacoPkg;
- import javax.megaco.pkg.PkgEventItem;
-
- /**
- * The MEGACO On Hook event class extends the PkgEventItem class. This is a
- * final class. This class defines On Hook event of Analog Line Supervision
- * package. The methods shall define that this event item belongs to the Analog
- * Line Supervision package.
- */
- public final class AnalogLineSOnEvt extends PkgEventItem {
- /**
- * Identifies On Hook event of the MEGACO Analog Line Supervision Package.
- * Its value shall be set equal to 0x0004.
- */
- public static final int ANALOG_LINE_ONHOOK_EVENT = 0x0004;
-
- /**
- * Constructs a Jain MEGACO Object representing event Item of the MEGACO
- * Package for event OnHook and package as Analog Line Supervision.
- */
- public AnalogLineSOnEvt() {
- super();
- super.itemId = ANALOG_LINE_ONHOOK_EVENT;
- super.eventId = ANALOG_LINE_ONHOOK_EVENT;
- super.packageId = new AnalogLineSPkg();
-
- }
-
- /**
- * 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 On Hook event of Analog Line Supervision Package.
- *
- * @return It shall {@link ANALOG_LINE_ONHOOK_EVENT}.
- */
- public int getEventId() {
-
- return super.itemId;
- }
-
- /**
- * 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 On
- * Hook event of Analog Line Supervision Package.
- *
- * @return It shall return {@link ANALOG_LINE_ONHOOK_EVENT}.
- */
- public int getItemId() {
-
- return super.itemId;
- }
-
- /**
- * This method gets the package to which the item belongs. Since the On Hook
- * event is defined in the Analog Line Supervision Package of MEGACO
- * protocol, this method returns the AnalogLineSPkg class object.
- *
- * @return The package is {@link AnalogLineSPkg}.
- */
- public MegacoPkg getItemsPkgId() {
- return super.packageId;
- }
- }