net.jradius.dictionary.vsa_starent.Attr_SNMIPSendTermVerification 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_starent;
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: SN-MIP-Send-Term-Verification
* Attribute Type: 26
* Vendor Id: 8164
* VSA Type: 48
* Value Type: NamedValue
* Possible Values:
*
* - Disabled (0)
*
- EnabledOrNVSE_Custom1 (1)
*
- NVSE_Custom2 (2)
*
- NVSE_Starent (3)
*
*
* @author class net.jradius.freeradius.RadiusDictionary
*/
public final class Attr_SNMIPSendTermVerification extends VSAttribute
{
public static final String NAME = "SN-MIP-Send-Term-Verification";
public static final int VENDOR_ID = 8164;
public static final int VSA_TYPE = 48;
public static final long TYPE = ((VENDOR_ID & 0xFFFF) << 16) | VSA_TYPE;
public static final long serialVersionUID = TYPE;
public static final Long Disabled = new Long(0L);
public static final Long EnabledOrNVSECustom1 = new Long(1L);
public static final Long NVSECustom2 = new Long(2L);
public static final Long NVSEStarent = new Long(3L);
protected class NamedValueMap implements NamedValue.NamedValueMap
{
public Long[] knownValues = { new Long(0L),new Long(1L),new Long(2L),new Long(3L)};
public Long[] getKnownValues() { return knownValues; }
public Long getNamedValue(String name)
{
if ("Disabled".equals(name)) return new Long(0L);
if ("EnabledOrNVSE_Custom1".equals(name)) return new Long(1L);
if ("NVSE_Custom2".equals(name)) return new Long(2L);
if ("NVSE_Starent".equals(name)) return new Long(3L);
return null;
}
public String getNamedValue(Long value)
{
if (new Long(0L).equals(value)) return "Disabled";
if (new Long(1L).equals(value)) return "EnabledOrNVSE_Custom1";
if (new Long(2L).equals(value)) return "NVSE_Custom2";
if (new Long(3L).equals(value)) return "NVSE_Starent";
return null;
}
};
public static NamedValueMap map = null;
public void setup()
{
attributeName = NAME;
attributeType = 26;
vendorId = VENDOR_ID;
vsaAttributeType = VSA_TYPE;
setFormat("2,2");
attributeValue = new NamedValue(map != null ? map : (map = new NamedValueMap()));
}
public Attr_SNMIPSendTermVerification()
{
setup();
}
public Attr_SNMIPSendTermVerification(Serializable o)
{
setup(o);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy