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

net.jradius.dictionary.vsa_cablelabs.Attr_CableLabsQoSReleaseReason Maven / Gradle / Ivy

// DO NOT EDIT THIS FILE DIRECTLY! - AUTOMATICALLY GENERATED
// Generated by: class net.jradius.freeradius.RadiusDictionary
// Generated on: Fri, 29 Nov 2013 13:24:47 +0000

package net.jradius.dictionary.vsa_cablelabs;

import java.io.Serializable;
import java.util.LinkedHashMap;
import java.util.Map;

import net.jradius.packet.attribute.VSAttribute;
import net.jradius.packet.attribute.value.NamedValue;

/**
 * Attribute Name: CableLabs-QoS-Release-Reason
* Attribute Type: 26
* Vendor Id: 4491
* VSA Type: 66
* Value Type: NamedValue
* Possible Values:
*
    *
  • Gate-Closed-By-PS (1) *
  • Inactivity-Resource-Recovery-Timer-Expiration (2) *
  • CM-Failure (3) *
  • Pre-Empted (4) *
  • RSVP-PathTear-request (5) *
  • CM-Request (6) *
  • Admitted-Timer-Expiration (7) *
  • Other (127) *
* * @author class net.jradius.freeradius.RadiusDictionary */ public final class Attr_CableLabsQoSReleaseReason extends VSAttribute { public static final String NAME = "CableLabs-QoS-Release-Reason"; public static final int VENDOR_ID = 4491; public static final int VSA_TYPE = 66; public static final long TYPE = ((VENDOR_ID & 0xFFFF) << 16) | VSA_TYPE; public static final long serialVersionUID = TYPE; public static final Long GateClosedByPS = new Long(1L); public static final Long InactivityResourceRecoveryTimerExpiration = new Long(2L); public static final Long CMFailure = new Long(3L); public static final Long PreEmpted = new Long(4L); public static final Long RSVPPathTearrequest = new Long(5L); public static final Long CMRequest = new Long(6L); public static final Long AdmittedTimerExpiration = new Long(7L); public static final Long Other = new Long(127L); protected class NamedValueMap implements NamedValue.NamedValueMap { public Long[] knownValues = { new Long(1L),new Long(2L),new Long(3L),new Long(4L),new Long(5L),new Long(6L),new Long(7L),new Long(127L)}; public Long[] getKnownValues() { return knownValues; } public Long getNamedValue(String name) { if ("Gate-Closed-By-PS".equals(name)) return new Long(1L); if ("Inactivity-Resource-Recovery-Timer-Expiration".equals(name)) return new Long(2L); if ("CM-Failure".equals(name)) return new Long(3L); if ("Pre-Empted".equals(name)) return new Long(4L); if ("RSVP-PathTear-request".equals(name)) return new Long(5L); if ("CM-Request".equals(name)) return new Long(6L); if ("Admitted-Timer-Expiration".equals(name)) return new Long(7L); if ("Other".equals(name)) return new Long(127L); return null; } public String getNamedValue(Long value) { if (new Long(1L).equals(value)) return "Gate-Closed-By-PS"; if (new Long(2L).equals(value)) return "Inactivity-Resource-Recovery-Timer-Expiration"; if (new Long(3L).equals(value)) return "CM-Failure"; if (new Long(4L).equals(value)) return "Pre-Empted"; if (new Long(5L).equals(value)) return "RSVP-PathTear-request"; if (new Long(6L).equals(value)) return "CM-Request"; if (new Long(7L).equals(value)) return "Admitted-Timer-Expiration"; if (new Long(127L).equals(value)) return "Other"; return null; } }; public static NamedValueMap map = null; public void setup() { attributeName = NAME; attributeType = 26; vendorId = VENDOR_ID; vsaAttributeType = VSA_TYPE; attributeValue = new NamedValue(map != null ? map : (map = new NamedValueMap())); } public Attr_CableLabsQoSReleaseReason() { setup(); } public Attr_CableLabsQoSReleaseReason(Serializable o) { setup(o); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy