net.jradius.dictionary.Attr_FramedAppleTalkLink 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.IntegerValue;
/**
* Attribute Name: Framed-AppleTalk-Link
* Attribute Type: 37
* Value Type: IntegerValue
*
* @author class net.jradius.freeradius.RadiusDictionary
*/
public final class Attr_FramedAppleTalkLink extends RadiusAttribute
{
public static final String NAME = "Framed-AppleTalk-Link";
public static final long TYPE = 37;
public static final long serialVersionUID = TYPE;
public void setup()
{
attributeName = NAME;
attributeType = 37;
attributeValue = new IntegerValue();
}
public Attr_FramedAppleTalkLink()
{
setup();
}
public Attr_FramedAppleTalkLink(Serializable o)
{
setup(o);
}
}