net.jradius.dictionary.Attr_PacketSrcIPv6Address 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;
import java.io.Serializable;
import java.net.InetAddress;
import net.jradius.packet.attribute.RadiusAttribute;
import net.jradius.packet.attribute.value.IPv6AddrValue;
/**
* Attribute Name: Packet-Src-IPv6-Address
* Attribute Type: 1097 (FreeRADIUS Internal Attribute)
* Value Type: IPv6AddrValue
*
* @author class net.jradius.freeradius.RadiusDictionary
*/
public final class Attr_PacketSrcIPv6Address extends RadiusAttribute
{
public static final String NAME = "Packet-Src-IPv6-Address";
public static final long TYPE = 1097;
public static final long serialVersionUID = TYPE;
public void setup()
{
attributeName = NAME;
attributeType = 1097;
attributeValue = new IPv6AddrValue();
}
public Attr_PacketSrcIPv6Address()
{
setup();
}
public Attr_PacketSrcIPv6Address(Serializable o)
{
setup(o);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy