All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.jradius.dictionary.Attr_NASIPAddress 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 java.net.InetAddress;


import net.jradius.packet.attribute.RadiusAttribute;
import net.jradius.packet.attribute.value.IPAddrValue;

/**
 * Attribute Name: NAS-IP-Address
* Attribute Type: 4
* Value Type: IPAddrValue
* * @author class net.jradius.freeradius.RadiusDictionary */ public final class Attr_NASIPAddress extends RadiusAttribute { public static final String NAME = "NAS-IP-Address"; public static final long TYPE = 4; public static final long serialVersionUID = TYPE; public void setup() { attributeName = NAME; attributeType = 4; attributeValue = new IPAddrValue(); } public Attr_NASIPAddress() { setup(); } public Attr_NASIPAddress(Serializable o) { setup(o); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy