
net.jradius.dictionary.vsa_wimax.Attr_WiMAXDMActionCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jradius-abfab-dictionary Show documentation
Show all versions of jradius-abfab-dictionary Show documentation
JRadius ABFAB Dictionary: FreeRADIUS 2.2.0 + RFC-to-be-7055
The newest version!
// 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_wimax;
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: WiMAX-DM-Action-Code
* Attribute Type: 26
* Vendor Id: 24757
* VSA Type: 60
* Value Type: NamedValue
* Possible Values:
*
* - Deregister-MS (0)
*
- Suspend-MS-Traffic (1)
*
- Suspend-User-Traffic (2)
*
- Resume-Traffic (3)
*
- MS-Terminate (4)
*
- MS-Idle (5)
*
- MS-Completed-IPv6-Handover (6)
*
- BS-Sends-RES-Cmd (0xffff)
*
*
* @author class net.jradius.freeradius.RadiusDictionary
*/
public final class Attr_WiMAXDMActionCode extends VSAttribute
{
public static final String NAME = "WiMAX-DM-Action-Code";
public static final int VENDOR_ID = 24757;
public static final int VSA_TYPE = 60;
public static final long TYPE = ((VENDOR_ID & 0xFFFF) << 16) | VSA_TYPE;
public static final long serialVersionUID = TYPE;
public static final Long DeregisterMS = new Long(0L);
public static final Long SuspendMSTraffic = new Long(1L);
public static final Long SuspendUserTraffic = new Long(2L);
public static final Long ResumeTraffic = new Long(3L);
public static final Long MSTerminate = new Long(4L);
public static final Long MSIdle = new Long(5L);
public static final Long MSCompletedIPv6Handover = new Long(6L);
public static final Long BSSendsRESCmd = new Long(0xffffL);
protected class NamedValueMap implements NamedValue.NamedValueMap
{
public Long[] knownValues = { new Long(0L),new Long(1L),new Long(2L),new Long(3L),new Long(4L),new Long(5L),new Long(6L),new Long(0xffffL)};
public Long[] getKnownValues() { return knownValues; }
public Long getNamedValue(String name)
{
if ("Deregister-MS".equals(name)) return new Long(0L);
if ("Suspend-MS-Traffic".equals(name)) return new Long(1L);
if ("Suspend-User-Traffic".equals(name)) return new Long(2L);
if ("Resume-Traffic".equals(name)) return new Long(3L);
if ("MS-Terminate".equals(name)) return new Long(4L);
if ("MS-Idle".equals(name)) return new Long(5L);
if ("MS-Completed-IPv6-Handover".equals(name)) return new Long(6L);
if ("BS-Sends-RES-Cmd".equals(name)) return new Long(0xffffL);
return null;
}
public String getNamedValue(Long value)
{
if (new Long(0L).equals(value)) return "Deregister-MS";
if (new Long(1L).equals(value)) return "Suspend-MS-Traffic";
if (new Long(2L).equals(value)) return "Suspend-User-Traffic";
if (new Long(3L).equals(value)) return "Resume-Traffic";
if (new Long(4L).equals(value)) return "MS-Terminate";
if (new Long(5L).equals(value)) return "MS-Idle";
if (new Long(6L).equals(value)) return "MS-Completed-IPv6-Handover";
if (new Long(0xffffL).equals(value)) return "BS-Sends-RES-Cmd";
return null;
}
};
public static NamedValueMap map = null;
public void setup()
{
attributeName = NAME;
attributeType = 26;
vendorId = VENDOR_ID;
vsaAttributeType = VSA_TYPE;
setFormat("1,1,c");
attributeValue = new NamedValue(map != null ? map : (map = new NamedValueMap()));
}
public Attr_WiMAXDMActionCode()
{
setup();
}
public Attr_WiMAXDMActionCode(Serializable o)
{
setup(o);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy