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

net.jradius.dictionary.vsa_microsoft.Attr_MSRNAPNotQuarantineCapable 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.vsa_microsoft;

import java.io.Serializable;
import java.util.LinkedHashMap;
import java.util.Map;

import net.jradius.packet.attribute.VSAttribute;
import net.jradius.packet.attribute.value.NamedValue;

/**
 * Attribute Name: MS-RNAP-Not-Quarantine-Capable
* Attribute Type: 26
* Vendor Id: 311
* VSA Type: 54
* Value Type: NamedValue
* Possible Values:
*
    *
  • SoH-Sent (0) *
  • SoH-Not-Sent (1) *
* * @author class net.jradius.freeradius.RadiusDictionary */ public final class Attr_MSRNAPNotQuarantineCapable extends VSAttribute { public static final String NAME = "MS-RNAP-Not-Quarantine-Capable"; public static final int VENDOR_ID = 311; public static final int VSA_TYPE = 54; public static final long TYPE = ((VENDOR_ID & 0xFFFF) << 16) | VSA_TYPE; public static final long serialVersionUID = TYPE; public static final Long SoHSent = new Long(0L); public static final Long SoHNotSent = new Long(1L); @SuppressWarnings("serial") protected class NamedValueMap implements NamedValue.NamedValueMap, Serializable { public Long[] knownValues = { new Long(0L),new Long(1L)}; public Long[] getKnownValues() { return knownValues; } public Long getNamedValue(String name) { if ("SoH-Sent".equals(name)) return new Long(0L); if ("SoH-Not-Sent".equals(name)) return new Long(1L); return null; } public String getNamedValue(Long value) { if (new Long(0L).equals(value)) return "SoH-Sent"; if (new Long(1L).equals(value)) return "SoH-Not-Sent"; return null; } }; public static transient NamedValueMap map = null; public void setup() { attributeName = NAME; attributeType = 26; vendorId = VENDOR_ID; vsaAttributeType = VSA_TYPE; attributeValue = new NamedValue(map != null ? map : (map = new NamedValueMap())); } public Attr_MSRNAPNotQuarantineCapable() { setup(); } public Attr_MSRNAPNotQuarantineCapable(Serializable o) { setup(o); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy