Uses of Interface
org.example.azapi.AzResourceActionAssociation

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

Uses of AzResourceActionAssociation in org.example.azapi
 

Methods in org.example.azapi that return AzResourceActionAssociation
 AzResourceActionAssociation AzRequestContext.createAndAddResourceActionAssociation(AzEntity<AzCategoryIdResource> azResource, AzEntity<AzCategoryIdAction> azAction)
          Add an AzResourceActionAssociation to the AzRequestContext by providing an AzResource entity and an AzAction entity, which the method will combine into the appropriate association object and add it to the Set of associations.
 AzResourceActionAssociation AzResult.getAzResourceActionAssociation()
          A convenience method to return the combined AzResource, AzAction object references (AzResourceActionAssociation) for this AzResult.
 

Methods in org.example.azapi that return types with arguments of type AzResourceActionAssociation
 java.util.Set<AzResourceActionAssociation> AzRequestContext.addResourceActionAssociation(AzEntity<AzCategoryIdResource> resource, java.util.Set<AzEntity<AzCategoryIdAction>> actions)
          Add the cross-product of a single AzResource and a Set of AzActions to the AzRequestContext.
 java.util.Set<AzResourceActionAssociation> AzRequestContext.addResourceActionAssociation(java.util.Set<AzEntity<AzCategoryIdResource>> resources, AzEntity<AzCategoryIdAction> action)
          Add the cross-product of a Set of AzResources and a single AzAction to the AzRequestContext.
 java.util.Set<AzResourceActionAssociation> AzRequestContext.addResourceActionAssociation(java.util.Set<AzEntity<AzCategoryIdResource>> azResourceSet, java.util.Set<AzEntity<AzCategoryIdAction>> azActionSet)
          Add an AzResourceActionAssociation to the AzRequestContext for each possible AzResource-AzAction combination (cross-product (nxm)) of a Set of "n" AzResource entities and a Set of "m" AzAction entities.
 java.util.Set<AzResourceActionAssociation> AzRequestContext.getAssociations()
          Return the set of tuples corresponding to the resource and action pairs that have been set in the resource context.
 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.
 

Methods in org.example.azapi with parameters of type AzResourceActionAssociation
 boolean AzResourceActionAssociation.equals(AzResourceActionAssociation azResourceActionAssociation)
          Compare this association with another for equality based on object reference.
 AzResult AzResponseContext.getResult(AzResourceActionAssociation azAssociation)
          Returns the AzResult object which is associated with a specific AzResourceAssociation object.