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

net.jradius.dictionary.vsa_ascend.Attr_AscendCallingIdScreening 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_ascend;

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: Ascend-Calling-Id-Screening
* Attribute Type: 26
* Vendor Id: 529
* VSA Type: 69
* Value Type: NamedValue
* Possible Values:
*
    *
  • Network-Provided (3) *
  • User-Not-Screened (0) *
  • User-Provided-Failed (2) *
  • User-Provided-Passed (1) *
* * @author class net.jradius.freeradius.RadiusDictionary */ public final class Attr_AscendCallingIdScreening extends VSAttribute { public static final String NAME = "Ascend-Calling-Id-Screening"; public static final int VENDOR_ID = 529; public static final int VSA_TYPE = 69; public static final long TYPE = ((VENDOR_ID & 0xFFFF) << 16) | VSA_TYPE; public static final long serialVersionUID = TYPE; public static final Long NetworkProvided = new Long(3L); public static final Long UserNotScreened = new Long(0L); public static final Long UserProvidedFailed = new Long(2L); public static final Long UserProvidedPassed = new Long(1L); @SuppressWarnings("serial") protected class NamedValueMap implements NamedValue.NamedValueMap, Serializable { public Long[] knownValues = { new Long(3L),new Long(0L),new Long(2L),new Long(1L)}; public Long[] getKnownValues() { return knownValues; } public Long getNamedValue(String name) { if ("Network-Provided".equals(name)) return new Long(3L); if ("User-Not-Screened".equals(name)) return new Long(0L); if ("User-Provided-Failed".equals(name)) return new Long(2L); if ("User-Provided-Passed".equals(name)) return new Long(1L); return null; } public String getNamedValue(Long value) { if (new Long(3L).equals(value)) return "Network-Provided"; if (new Long(0L).equals(value)) return "User-Not-Screened"; if (new Long(2L).equals(value)) return "User-Provided-Failed"; if (new Long(1L).equals(value)) return "User-Provided-Passed"; 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_AscendCallingIdScreening() { setup(); } public Attr_AscendCallingIdScreening(Serializable o) { setup(o); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy