net.jradius.dictionary.Attr_VQPSequenceNumber 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 15:56:13 +0200
package net.jradius.dictionary;
import java.io.Serializable;
import net.jradius.packet.attribute.RadiusAttribute;
import net.jradius.packet.attribute.value.IntegerValue;
/**
* Attribute Name: VQP-Sequence-Number
* Attribute Type: 0x2b02 (FreeRADIUS Internal Attribute)
* Value Type: IntegerValue
*
* @author class net.jradius.freeradius.RadiusDictionary
*/
public final class Attr_VQPSequenceNumber extends RadiusAttribute
{
public static final String NAME = "VQP-Sequence-Number";
public static final long TYPE = 0x2b02;
public static final long serialVersionUID = TYPE;
public void setup()
{
attributeName = NAME;
attributeType = 0x2b02;
attributeValue = new IntegerValue();
}
public Attr_VQPSequenceNumber()
{
setup();
}
public Attr_VQPSequenceNumber(Serializable o)
{
setup(o);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy