net.jradius.dictionary.vsa_3gpp.Attr__3GPPGGSNIPv6Address 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.vsa_3gpp;
import java.io.Serializable;
import java.net.InetAddress;
import net.jradius.packet.attribute.VSAttribute;
import net.jradius.packet.attribute.value.IPv6AddrValue;
/**
* Attribute Name: 3GPP-GGSN-IPv6-Address
* Attribute Type: 26
* Vendor Id: 10415
* VSA Type: 16
* Value Type: IPv6AddrValue
*
* @author class net.jradius.freeradius.RadiusDictionary
*/
public final class Attr__3GPPGGSNIPv6Address extends VSAttribute
{
public static final String NAME = "3GPP-GGSN-IPv6-Address";
public static final int VENDOR_ID = 10415;
public static final int VSA_TYPE = 16;
public static final long TYPE = ((VENDOR_ID & 0xFFFF) << 16) | VSA_TYPE;
public static final long serialVersionUID = TYPE;
public void setup()
{
attributeName = NAME;
attributeType = 26;
vendorId = VENDOR_ID;
vsaAttributeType = VSA_TYPE;
attributeValue = new IPv6AddrValue();
}
public Attr__3GPPGGSNIPv6Address()
{
setup();
}
public Attr__3GPPGGSNIPv6Address(Serializable o)
{
setup(o);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy