net.jradius.dictionary.Attr_ARAPFeatures 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 16:12:37 +0200
package net.jradius.dictionary;
import java.io.Serializable;
import net.jradius.packet.attribute.RadiusAttribute;
import net.jradius.packet.attribute.value.OctetsValue;
/**
* Attribute Name: ARAP-Features
* Attribute Type: 71
* Value Type: OctetsValue
*
* @author class net.jradius.freeradius.RadiusDictionary
*/
public final class Attr_ARAPFeatures extends RadiusAttribute
{
public static final String NAME = "ARAP-Features";
public static final long TYPE = 71;
public static final long serialVersionUID = TYPE;
public void setup()
{
attributeName = NAME;
attributeType = 71;
attributeValue = new OctetsValue();
}
public Attr_ARAPFeatures()
{
setup();
}
public Attr_ARAPFeatures(Serializable o)
{
setup(o);
}
}