net.jradius.dictionary.vsa_ascend.Attr_AscendX25ReverseCharging 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_ascend;
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: Ascend-X25-Reverse-Charging
* Attribute Type: 26
* Vendor Id: 529
* VSA Type: 32
* Value Type: NamedValue
* Possible Values:
*
* - Reverse-Charging-No (0)
*
- Reverse-Charging-Yes (1)
*
*
* @author class net.jradius.freeradius.RadiusDictionary
*/
public final class Attr_AscendX25ReverseCharging extends VSAttribute
{
public static final String NAME = "Ascend-X25-Reverse-Charging";
public static final int VENDOR_ID = 529;
public static final int VSA_TYPE = 32;
public static final long TYPE = ((VENDOR_ID & 0xFFFF) << 16) | VSA_TYPE;
public static final long serialVersionUID = TYPE;
public static final Long ReverseChargingNo = new Long(0L);
public static final Long ReverseChargingYes = new Long(1L);
protected class NamedValueMap implements NamedValue.NamedValueMap
{
public Long[] knownValues = { new Long(0L),new Long(1L)};
public Long[] getKnownValues() { return knownValues; }
public Long getNamedValue(String name)
{
if ("Reverse-Charging-No".equals(name)) return new Long(0L);
if ("Reverse-Charging-Yes".equals(name)) return new Long(1L);
return null;
}
public String getNamedValue(Long value)
{
if (new Long(0L).equals(value)) return "Reverse-Charging-No";
if (new Long(1L).equals(value)) return "Reverse-Charging-Yes";
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_AscendX25ReverseCharging()
{
setup();
}
public Attr_AscendX25ReverseCharging(Serializable o)
{
setup(o);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy