Uses of Class
org.tinyradius.dictionary.AttributeType

Packages that use AttributeType
org.tinyradius.attribute This package contains classes for Radius attributes and Radius attribute types. 
org.tinyradius.dictionary This package contains interfaces and classes that manage a dictionary of Radius attribute types. 
 

Uses of AttributeType in org.tinyradius.attribute
 

Methods in org.tinyradius.attribute that return AttributeType
 AttributeType RadiusAttribute.getAttributeTypeObject()
          Retrieves an AttributeType object for this attribute.
 

Uses of AttributeType in org.tinyradius.dictionary
 

Methods in org.tinyradius.dictionary that return AttributeType
 AttributeType Dictionary.getAttributeTypeByCode(int typeCode)
          Retrieves an attribute type by type code.
 AttributeType MemoryDictionary.getAttributeTypeByCode(int typeCode)
          Returns the AttributeType for the vendor -1 from the cache.
 AttributeType Dictionary.getAttributeTypeByCode(int vendorId, int typeCode)
          Retrieves an attribute type for a vendor-specific attribute.
 AttributeType MemoryDictionary.getAttributeTypeByCode(int vendorCode, int typeCode)
          Returns the specified AttributeType object.
 AttributeType Dictionary.getAttributeTypeByName(java.lang.String typeName)
          Retrieves an attribute type by name.
 AttributeType MemoryDictionary.getAttributeTypeByName(java.lang.String typeName)
          Retrieves the attribute type with the given name.
 

Methods in org.tinyradius.dictionary with parameters of type AttributeType
 void MemoryDictionary.addAttributeType(AttributeType attributeType)
          Adds an AttributeType object to the cache.
 void WritableDictionary.addAttributeType(AttributeType attributeType)
          Adds an AttributeType object to the dictionary.