/protocols/jain-megaco/megaco-api/src/main/java/javax/megaco/pkg/CPToneGenPkg/CPToneGenPkg.java
http://mobicents.googlecode.com/ · Java · 50 lines · 15 code · 11 blank · 24 comment · 0 complexity · b2176fe4259235d371718b292507248b MD5 · raw file
- package javax.megaco.pkg.CPToneGenPkg;
-
- import javax.megaco.pkg.MegacoPkg;
- import javax.megaco.pkg.PkgConsts;
-
- /**
- * The MEGACO Call Progress Tone Generator Package inherits all methods of the
- * Package, but overrides the getPkgId and getPkgName to define packageid
- * corresponding to the Call Progress Tone Generator Package. This class also
- * overrides the getExtendedPkgIds to define that this package extends MEGACO
- * Tone Generator Package.
- */
- public class CPToneGenPkg extends MegacoPkg {
-
- private int[] extendedPkgIds = new int[] { PkgConsts.TONE_GEN_PACKAGE };
-
-
-
- public CPToneGenPkg() {
- super();
-
- }
-
- /**
- * This method gets the package ids of all the package which the package had
- * directly or indirectly extended. Package ids are defined in
- * {@link PkgConsts}.
- *
- * @return Since this packge extends MEGACO Tone Generator package, this
- * shall return value {@link PkgConsts.TONE_GEN_PACKAGE}.
- */
- public int[] getExtendedPkgIds() {
-
- return extendedPkgIds;
- }
-
- /**
- * This method return the package Id of the MEGACO package for which the
- * object is created. For Call Progress Tone Generator Package constant
- * value {@link PkgConsts.CALL_PROG_TONE_GEN_PACKAGE} shall be returned.
- *
- * @return Constant value {@link PkgConsts.CALL_PROG_TONE_GEN_PACKAGE}
- * indicating DTMF Generator Package.
- */
- public int getPkgId() {
- // FIXME: jdoc says: DTMF_GEN_PACKAGE
- return PkgConsts.CALL_PROG_TONE_GEN_PACKAGE;
- }
-
- }