net.jradius.dictionary.vsa_usr.Attr_USRSpoofing Maven / Gradle / Ivy
The newest version!
// DO NOT EDIT THIS FILE DIRECTLY! - AUTOMATICALLY GENERATED
// Generated by: class net.jradius.freeradius.RadiusDictionary
// Generated on: Thu, 5 Jan 2017 15:56:13 +0200
package net.jradius.dictionary.vsa_usr;
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: USR-Spoofing
* Attribute Type: 26
* Vendor Id: 429
* VSA Type: 0x9811
* Value Type: NamedValue
* Possible Values:
*
* - enabled (1)
*
- disabled (2)
*
*
* @author class net.jradius.freeradius.RadiusDictionary
*/
public final class Attr_USRSpoofing extends VSAttribute
{
public static final String NAME = "USR-Spoofing";
public static final int VENDOR_ID = 429;
public static final int VSA_TYPE = 0x9811;
public static final long TYPE = ((VENDOR_ID & 0xFFFF) << 16) | VSA_TYPE;
public static final long serialVersionUID = TYPE;
public static final Long enabled = new Long(1L);
public static final Long disabled = new Long(2L);
@SuppressWarnings("serial")
protected class NamedValueMap implements NamedValue.NamedValueMap, Serializable
{
public Long[] knownValues = { new Long(1L),new Long(2L)};
public Long[] getKnownValues() { return knownValues; }
public Long getNamedValue(String name)
{
if ("enabled".equals(name)) return new Long(1L);
if ("disabled".equals(name)) return new Long(2L);
return null;
}
public String getNamedValue(Long value)
{
if (new Long(1L).equals(value)) return "enabled";
if (new Long(2L).equals(value)) return "disabled";
return null;
}
};
public static transient NamedValueMap map = null;
public void setup()
{
attributeName = NAME;
attributeType = 26;
vendorId = VENDOR_ID;
vsaAttributeType = VSA_TYPE;
setFormat("4,0");
attributeValue = new NamedValue(map != null ? map : (map = new NamedValueMap()));
}
public Attr_USRSpoofing()
{
setup();
}
public Attr_USRSpoofing(Serializable o)
{
setup(o);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy