Uses of Interface
org.example.azapi.AzAttribute

Packages that use AzAttribute
org.example.azapi The AzApi package contains the interfaces that must be implemented by a provider. 
org.example.azapi.test   
 

Uses of AzAttribute in org.example.azapi
 

Methods in org.example.azapi that return AzAttribute
<U extends java.lang.Enum<U> & AzDataTypeId,V>
AzAttribute<T>
AzEntity.createAzAttribute(java.lang.String issuer, java.lang.String attributeId, AzAttributeValue<U,V> attributeValue)
          Creates a general AzAttribute with the AzCategoryId Enum, T, specified for this AzEntity object, and add it to the Set> managed by this AzEntity object.
 AzAttribute<T> AzEntity.getAttributeByAttribId(java.lang.String s)
          Get any attribute in the current collection by specifying its AttributeId.
 

Methods in org.example.azapi that return types with arguments of type AzAttribute
 java.util.Set<AzAttribute<?>> AzEntity.getAzAttributeMixedSet()
          Get the Set that holds the attributes in this collection
 java.util.Set<AzAttribute<T>> AzEntity.getAzAttributeSet()
          Get the Set that holds the attributes in this collection
 java.util.Set<AzAttribute<T>> AzEntity.getAzAttributeSetByAttribId(java.lang.String s)
          Get the Set of attributes in this collection that match the provided XACML AttributeId.
 

Methods in org.example.azapi with parameters of type AzAttribute
<V extends java.lang.Enum<V> & AzCategoryId>
boolean
AzEntity.addAzAttribute(AzAttribute<V> azAttribute)
          Add an existing AzAttribute to the current collection of AzAttributes in this AzEntity object.
 

Uses of AzAttribute in org.example.azapi.test
 

Methods in org.example.azapi.test with parameters of type AzAttribute
static
<T extends java.lang.Enum<T> & AzCategoryId>
void
TestAzAPI.printAttributeData(AzAttribute<T> azAttr, java.lang.String info)