Uses of Interface
org.example.azapi.AzRequestContext

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

Uses of AzRequestContext in org.example.azapi
 

Methods in org.example.azapi that return AzRequestContext
 AzRequestContext AzService.createAzRequestContext()
          Returns a new AzRequestContext object that the AzAPI caller may use to populate with all the necessary information required (in the form of AzAttributes) for one or more XACML Authorization requests.
 

Methods in org.example.azapi with parameters of type AzRequestContext
 AzResponseContext AzService.decide(AzRequestContext azRequestContext)
          Returns the authorization decision(s) in an AzResponseContext object.
 java.util.Set<AzResourceActionAssociation> AzService.query(java.lang.String scope, AzRequestContext azRequestContext, boolean allowedNotAllowed)
          Returns the set of AzResourceActionAssociations that are allowed (or not allowed, depending on boolean below) for the specified "scope", where "scope" is a String expression representing a set of target resources.
 AzResponseContext AzService.queryVerbose(java.lang.String scope, AzRequestContext azRequestContext)
          Returns an AzResponseContext that contains all the results for queries that are within the specified "scope", where "scope" is a String expression representing a set of target resources.
 

Uses of AzRequestContext in org.example.azapi.test
 

Methods in org.example.azapi.test with parameters of type AzRequestContext
static void TestAzAPI.printAssociations(AzRequestContext azReqCtx)