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

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

Uses of AzCategoryIdResource in org.example.azapi
 

Methods in org.example.azapi that return types with arguments of type AzCategoryIdResource
 AzEntity<AzCategoryIdResource> AzRequestContext.createAzEntity(AzCategoryIdResource t)
          Creates and returns an AzEntity object.
 AzEntity<AzCategoryIdResource> AzRequestContext.getAzEntity(AzCategoryIdResource t)
           
 AzEntity<AzCategoryIdResource> AzResourceActionAssociation.getAzResource()
          Get the AzResource entity component of the association.
 java.util.Set<AzEntity<AzCategoryIdResource>> AzRequestContext.getResources()
          Get the Set of AzEntity's held by this AzRequestContext.
 

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

Method parameters in org.example.azapi with type arguments of type AzCategoryIdResource
 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 AzCategoryIdResource in org.example.azapi.constants
 

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