net.jradius.dictionary.vsa_wimax.Attr_WiMAXVolumeThreshold 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 net.jradius.packet.attribute.SubAttribute;
import net.jradius.packet.attribute.value.IntegerValue;
/**
* Attribute Name: WiMAX-Volume-Threshold
* Attribute Type: 26
* Vendor Id: 24757
* VSA Type: 3
* Value Type: IntegerValue
*
* @author class net.jradius.freeradius.RadiusDictionary
*/
public final class Attr_WiMAXVolumeThreshold extends SubAttribute
{
public static final String NAME = "WiMAX-Volume-Threshold";
public static final int VENDOR_ID = 24757;
public static final int PARENT_TYPE = 37;
public static final int VSA_TYPE = (3 << 8) | PARENT_TYPE;
public static final long TYPE = ((VENDOR_ID & 0xFFFF) << 16) | VSA_TYPE;
public static final long serialVersionUID = TYPE;
public void setup()
{
attributeName = NAME;
attributeType = 3;
setParentClass(Attr_WiMAXPPAQ.class);
vendorId = VENDOR_ID;
vsaAttributeType = VSA_TYPE;
setFormat("1,1,c");
attributeValue = new IntegerValue();
}
public Attr_WiMAXVolumeThreshold()
{
setup();
}
public Attr_WiMAXVolumeThreshold(Serializable o)
{
setup(o);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy