Uses of Interface
org.example.azapi.constants.AzCategoryId

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

Uses of AzCategoryId in org.example.azapi
 

Classes in org.example.azapi with type parameters of type AzCategoryId
 interface AzAttribute<T extends Enum<T> & AzCategoryId>
           
 interface AzEntity<T extends Enum<T> & AzCategoryId>
          The AzEntity Interface represents a XACML collection of attributes.
 

Methods in org.example.azapi with type parameters of type AzCategoryId
<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.
<U extends java.lang.Enum<U> & AzDataTypeId,V,W extends java.lang.Enum<W> & AzCategoryId>
boolean
AzEntity.addAzAttribute(W w, java.lang.String issuer, java.lang.String attributeId, AzAttributeValue<U,V> attributeValue)
          Add a new AzAttribute to the current collection of AzAttributes in this AzEntity object.
<T extends java.lang.Enum<T> & AzCategoryId>
boolean
AzRequestContext.addAzEntity(AzEntity<T> azEntity)
          Adds an AzEntity object to the request context, subject to the restrictions on the number of AzEntities of that type allowed.
 

Uses of AzCategoryId in org.example.azapi.constants
 

Classes in org.example.azapi.constants that implement AzCategoryId
 class AzCategoryIdAction
           
 class AzCategoryIdEnvironment
           
 class AzCategoryIdObligation
           
 class AzCategoryIdResource
           
 class AzCategoryIdStatusDetail
           
 class AzCategoryIdSubjectAccess
          AzCategoryIdSubject* objects correspond to the values defined in XACML 2.0 Appendix B.4
 class AzCategoryIdSubjectCodebase
          The AzCategoryIdSubjectCodebase identifier indicates a system entity associated with a local or remote codebase that generated the request.
 class AzCategoryIdSubjectIntermediary
          The AzCategoryIdSubjectIntermediary identifier indicates a system entity through which the access request was passed.
 class AzCategoryIdSubjectRecipient
          The AzCategoryIdSubjectRecipient identifier indicates the system entity that will receive the results of the request (used when it is distinct from the access-subject).
 class AzCategoryIdSubjectRequestingMachine
          The AzCategoryIdSubjectRequestingMachine identifier indicates a system entity associated with the computer that initiated the access request.
 

Uses of AzCategoryId in org.example.azapi.test
 

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

Uses of AzCategoryId in org.example.azapi.util
 

Methods in org.example.azapi.util with type parameters of type AzCategoryId
static
<T extends java.lang.Enum<T> & AzCategoryId>
AzEntity<T>
AzEntityFactory.getAzEntity(T t)