Uses of Class
org.example.azapi.constants.AzCategoryIdAction

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

Uses of AzCategoryIdAction in org.example.azapi
 

Methods in org.example.azapi that return types with arguments of type AzCategoryIdAction
 AzEntity<AzCategoryIdAction> AzRequestContext.createAzEntity(AzCategoryIdAction t)
          Creates and returns an AzEntity object.
 java.util.Set<AzEntity<AzCategoryIdAction>> AzRequestContext.getActions()
          Get the Set> held by this AzRequestContext.
 AzEntity<AzCategoryIdAction> AzResourceActionAssociation.getAzAction()
          Get the AzAction entity component of the association.
 AzEntity<AzCategoryIdAction> AzRequestContext.getAzEntity(AzCategoryIdAction t)
           
 

Methods in org.example.azapi with parameters of type AzCategoryIdAction
 AzEntity<AzCategoryIdAction> AzRequestContext.createAzEntity(AzCategoryIdAction t)
          Creates and returns an AzEntity object.
 AzEntity<AzCategoryIdAction> AzRequestContext.getAzEntity(AzCategoryIdAction t)
           
 

Method parameters in org.example.azapi with type arguments of type AzCategoryIdAction
 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.
 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.
 void AzRequestContext.removeResourceActionAssociation(AzEntity<AzCategoryIdResource> resource, AzEntity<AzCategoryIdAction> action)
          Delete the AzResource and AzAction association from the AzRequestContext collection of AzResourceActionAssociations.
 void AzRequestContext.removeResourceActionAssociations(java.util.Set<AzEntity<AzCategoryIdResource>> resources, java.util.Set<AzEntity<AzCategoryIdAction>> actions)
          delete the cross-product of the AzResource and AzAction sets from the AzRequestContext, should the association exist.
 

Uses of AzCategoryIdAction in org.example.azapi.constants
 

Methods in org.example.azapi.constants that return AzCategoryIdAction
static AzCategoryIdAction AzCategoryIdAction.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AzCategoryIdAction[] AzCategoryIdAction.values()
          Returns an array containing the constants of this enum type, in the order they are declared.