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

net.jradius.dictionary.Attr_XAscendForce56 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 java.util.LinkedHashMap;
import java.util.Map;

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

/**
 * Attribute Name: X-Ascend-Force-56
* Attribute Type: 248
* Value Type: NamedValue
* Possible Values:
*
    *
  • Force-56-No (0) *
  • Force-56-Yes (1) *
* * @author class net.jradius.freeradius.RadiusDictionary */ public final class Attr_XAscendForce56 extends RadiusAttribute { public static final String NAME = "X-Ascend-Force-56"; public static final long TYPE = 248; public static final long serialVersionUID = TYPE; public static final Long Force56No = new Long(0L); public static final Long Force56Yes = 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 ("Force-56-No".equals(name)) return new Long(0L); if ("Force-56-Yes".equals(name)) return new Long(1L); return null; } public String getNamedValue(Long value) { if (new Long(0L).equals(value)) return "Force-56-No"; if (new Long(1L).equals(value)) return "Force-56-Yes"; return null; } }; public static transient NamedValueMap map = null; public void setup() { attributeName = NAME; attributeType = 248; attributeValue = new NamedValue(map != null ? map : (map = new NamedValueMap())); } public Attr_XAscendForce56() { setup(); } public Attr_XAscendForce56(Serializable o) { setup(o); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy