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

net.jradius.dictionary.vsa_prosoft.Attr_ProsoftAuthRole 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_prosoft;

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: Prosoft-Auth-Role
* Attribute Type: 26
* Vendor Id: 4735
* VSA Type: 16
* Value Type: NamedValue
* Possible Values:
*
    *
  • Read-Status (0) *
  • Read-Config (1) *
  • Read-Write (2) *
  • Admin (3) *
  • Super-user (4) *
* * @author class net.jradius.freeradius.RadiusDictionary */ public final class Attr_ProsoftAuthRole extends VSAttribute { public static final String NAME = "Prosoft-Auth-Role"; public static final int VENDOR_ID = 4735; 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 static final Long ReadStatus = new Long(0L); public static final Long ReadConfig = new Long(1L); public static final Long ReadWrite = new Long(2L); public static final Long Admin = new Long(3L); public static final Long Superuser = new Long(4L); @SuppressWarnings("serial") protected class NamedValueMap implements NamedValue.NamedValueMap, Serializable { public Long[] knownValues = { new Long(0L),new Long(1L),new Long(2L),new Long(3L),new Long(4L)}; public Long[] getKnownValues() { return knownValues; } public Long getNamedValue(String name) { if ("Read-Status".equals(name)) return new Long(0L); if ("Read-Config".equals(name)) return new Long(1L); if ("Read-Write".equals(name)) return new Long(2L); if ("Admin".equals(name)) return new Long(3L); if ("Super-user".equals(name)) return new Long(4L); return null; } public String getNamedValue(Long value) { if (new Long(0L).equals(value)) return "Read-Status"; if (new Long(1L).equals(value)) return "Read-Config"; if (new Long(2L).equals(value)) return "Read-Write"; if (new Long(3L).equals(value)) return "Admin"; if (new Long(4L).equals(value)) return "Super-user"; 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_ProsoftAuthRole() { setup(); } public Attr_ProsoftAuthRole(Serializable o) { setup(o); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy