Uses of Class
org.rhq.core.domain.resource.Resource

Packages that use Resource
org.rhq.core.domain.alert   
org.rhq.core.domain.configuration   
org.rhq.core.domain.configuration.group   
org.rhq.core.domain.content   
org.rhq.core.domain.discovery   
org.rhq.core.domain.event   
org.rhq.core.domain.measurement   
org.rhq.core.domain.operation   
org.rhq.core.domain.resource   
org.rhq.core.domain.resource.composite   
org.rhq.core.domain.resource.group   
org.rhq.core.domain.resource.group.composite   
org.rhq.core.domain.util   
 

Uses of Resource in org.rhq.core.domain.alert
 

Methods in org.rhq.core.domain.alert that return Resource
 Resource AlertDefinition.getResource()
           
 

Methods in org.rhq.core.domain.alert with parameters of type Resource
 void AlertDefinition.setResource(Resource resource)
           
 

Uses of Resource in org.rhq.core.domain.configuration
 

Methods in org.rhq.core.domain.configuration that return Resource
 Resource ResourceConfigurationUpdate.getResource()
           
 Resource PluginConfigurationUpdate.getResource()
           
 

Methods in org.rhq.core.domain.configuration with parameters of type Resource
 void ResourceConfigurationUpdate.setResource(Resource resource)
           
 void PluginConfigurationUpdate.setResource(Resource resource)
           
 

Constructors in org.rhq.core.domain.configuration with parameters of type Resource
PluginConfigurationUpdate(Resource resource, Configuration config, String subjectName)
           
ResourceConfigurationUpdate(Resource resource, Configuration config, String subjectName)
           
 

Uses of Resource in org.rhq.core.domain.configuration.group
 

Methods in org.rhq.core.domain.configuration.group with parameters of type Resource
 PluginConfigurationUpdate GroupPluginConfigurationUpdate.getPluginConfigurationUpdate(Resource updateTarget)
           
 

Uses of Resource in org.rhq.core.domain.content
 

Methods in org.rhq.core.domain.content that return Resource
 Resource ResourceChannelPK.getResource()
           
 Resource InstalledPackageHistory.getResource()
           
 Resource InstalledPackage.getResource()
          Resource where the package is installed.
 Resource ContentServiceRequest.getResource()
           
 

Methods in org.rhq.core.domain.content that return types with arguments of type Resource
 Set<Resource> Channel.getResources()
          The resources subscribed to this channel.
 

Methods in org.rhq.core.domain.content with parameters of type Resource
 ResourceChannel Channel.addResource(Resource resource)
          Directly subscribe a resource to this channel.
 ResourceChannel Channel.removeResource(Resource resource)
          Unsubscribes the resource from this channel, if it exists.
 void ResourceChannelPK.setResource(Resource resource)
           
 void InstalledPackageHistory.setResource(Resource resource)
           
 void InstalledPackage.setResource(Resource resource)
           
 void ContentServiceRequest.setResource(Resource resource)
           
 

Constructors in org.rhq.core.domain.content with parameters of type Resource
ContentServiceRequest(Resource resource, String subjectName, ContentRequestType contentRequestType)
           
ResourceChannel(Resource resource, Channel channel)
           
ResourceChannelPK(Resource resource, Channel channel)
           
 

Uses of Resource in org.rhq.core.domain.discovery
 

Methods in org.rhq.core.domain.discovery that return types with arguments of type Resource
 Set<Resource> InventoryReport.getAddedRoots()
           
 

Methods in org.rhq.core.domain.discovery with parameters of type Resource
 void InventoryReport.addAddedRoot(Resource resource)
           
 

Uses of Resource in org.rhq.core.domain.event
 

Methods in org.rhq.core.domain.event that return Resource
 Resource EventSource.getResource()
           
 

Constructors in org.rhq.core.domain.event with parameters of type Resource
EventSource(String location, EventDefinition eventDefinition, Resource resource)
           
 

Uses of Resource in org.rhq.core.domain.measurement
 

Methods in org.rhq.core.domain.measurement that return Resource
 Resource ResourceAvailability.getResource()
           
 Resource MeasurementSchedule.getResource()
           
 Resource Availability.getResource()
           
 

Methods in org.rhq.core.domain.measurement with parameters of type Resource
 void MeasurementSchedule.setResource(Resource resource)
           
 

Constructors in org.rhq.core.domain.measurement with parameters of type Resource
Availability(Resource resource, Date startTime, AvailabilityType type)
          Constructor for Availability.
MeasurementSchedule(MeasurementDefinition definition, Resource resource)
          Construct a new MeasurementSchedule
ResourceAvailability(Resource resource, AvailabilityType type)
          Constructor for ResourceAvailability.
 

Uses of Resource in org.rhq.core.domain.operation
 

Methods in org.rhq.core.domain.operation that return Resource
 Resource ResourceOperationScheduleEntity.getResource()
           
 Resource ResourceOperationHistory.getResource()
           
 

Methods in org.rhq.core.domain.operation with parameters of type Resource
 void ResourceOperationScheduleEntity.setResource(Resource resource)
           
 void ResourceOperationHistory.setResource(Resource resource)
           
 

Constructors in org.rhq.core.domain.operation with parameters of type Resource
ResourceOperationHistory(String jobName, String jobGroup, String subjectName, OperationDefinition operationDefinition, Configuration parameters, Resource resource, GroupOperationHistory groupHistory)
           
ResourceOperationScheduleEntity(String jobName, String jobGroup, Date nextFireTime, Resource resource)
           
 

Uses of Resource in org.rhq.core.domain.resource
 

Fields in org.rhq.core.domain.resource declared as Resource
static Resource Resource.ROOT
           
 

Methods in org.rhq.core.domain.resource that return Resource
 Resource Resource.getParentResource()
           
 Resource CreateResourceHistory.getParentResource()
           
 Resource ResourceError.getResource()
           
 Resource DeleteResourceHistory.getResource()
           
 

Methods in org.rhq.core.domain.resource that return types with arguments of type Resource
 Set<Resource> Resource.getChildResources()
           
 List<Resource> ResourceType.getResources()
           
 Set<Resource> ProductVersion.getResources()
           
 

Methods in org.rhq.core.domain.resource with parameters of type Resource
 void Resource.addChildResource(Resource childResource)
           
 int Resource.compareTo(Resource that)
           
 boolean Resource.removeChildResource(Resource childResource)
           
 void Resource.setParentResource(Resource parentResource)
           
 void CreateResourceHistory.setParentResource(Resource parentResource)
           
 void ResourceError.setResource(Resource resource)
           
 void DeleteResourceHistory.setResource(Resource resource)
           
 

Method parameters in org.rhq.core.domain.resource with type arguments of type Resource
 void Resource.setChildResources(Set<Resource> children)
           
 void ResourceType.setResources(List<Resource> resources)
           
 void ProductVersion.setResources(Set<Resource> resources)
           
 

Constructors in org.rhq.core.domain.resource with parameters of type Resource
CreateResourceHistory(Resource parentResource, ResourceType resourceType, String subjectName, Configuration resourceConfiguration)
          Helper constructor when creating a request for a configuration-backed resource.
CreateResourceHistory(Resource parentResource, ResourceType resourceType, String subjectName, InstalledPackage installedPackage)
          Helper constructor when creating a request for a content-backed resource.
DeleteResourceHistory(Resource resource, String subjectName)
          Creates a new history instance representing a request to delete the specified resource.
ResourceError(Resource resource, ResourceErrorType errorType, String summary, String detail, long timeOccurred)
          Constructor for ResourceError.
ResourceError(Resource resource, ResourceErrorType errorType, Throwable exception, long timeOccurred)
          Constructor for ResourceError that uses ResourceError.setDetailFromThrowable(Throwable) to convert the given exception to an error message.
 

Uses of Resource in org.rhq.core.domain.resource.composite
 

Subclasses of Resource in org.rhq.core.domain.resource.composite
 class LockedResource
          Reduced access version of the Resource object.
 class ResourceIdFlyWeight
           
 

Methods in org.rhq.core.domain.resource.composite that return Resource
 Resource ResourceWithParentComposite.getParent()
           
 Resource ResourceMembershipComposite.getParent()
           
 Resource ResourceComposite.getParent()
           
 Resource ResourceWithParentComposite.getResource()
           
 Resource ResourceMembershipComposite.getResource()
           
 Resource ResourceComposite.getResource()
           
 

Methods in org.rhq.core.domain.resource.composite with parameters of type Resource
 void ResourceMembershipComposite.setResource(Resource resource)
           
 

Constructors in org.rhq.core.domain.resource.composite with parameters of type Resource
LockedResource(Resource resource)
           
ResourceComposite(Resource resource, AvailabilityType availability)
          Provides full access permissions - used for admin queries.
ResourceComposite(Resource resource, AvailabilityType availability, Number measure, Number inventory, Number control, Number alert, Number configure, Number content, Number createChildResources, Number deleteResources)
          Provides specified permissions - used for non-admin queries.
ResourceComposite(Resource resource, Resource parent, AvailabilityType availability)
          Provides full access permissions - used for admin queries.
ResourceComposite(Resource resource, Resource parent, AvailabilityType availability, Number measure, Number inventory, Number control, Number alert, Number configure, Number content, Number createChildResources, Number deleteResources)
          Provides specified permissions - used for non-admin queries.
ResourceMembershipComposite(Resource resource, Number explicitCount, Number implicitCount)
           
ResourceMembershipComposite(Resource resource, Resource parent, Number explicitCount, Number implicitCount)
           
ResourceWithAvailability(Resource resource, AvailabilityType availabilityType)
           
ResourceWithAvailability(Resource resource, AvailabilityType availabilityType, Number explicitCount, Number implicitCount)
           
ResourceWithAvailability(Resource resource, Resource parent, AvailabilityType availabilityType, Number explicitCount, Number implicitCount)
           
ResourceWithParentComposite(Resource parent, Resource resource)
           
 

Uses of Resource in org.rhq.core.domain.resource.group
 

Methods in org.rhq.core.domain.resource.group that return types with arguments of type Resource
 Set<Resource> ResourceGroup.getExplicitResources()
           
 Set<Resource> ResourceGroup.getImplicitResources()
           
 

Methods in org.rhq.core.domain.resource.group with parameters of type Resource
 void ResourceGroup.addExplicitResource(Resource resource)
           
 void ResourceGroup.addImplicitResource(Resource resource)
           
 boolean ResourceGroup.removeExplicitResource(Resource resource)
           
 boolean ResourceGroup.removeImplicitResource(Resource resource)
           
 

Method parameters in org.rhq.core.domain.resource.group with type arguments of type Resource
 void ResourceGroup.setExplicitResources(Set<Resource> resources)
           
 void ResourceGroup.setImplicitResources(Set<Resource> resources)
           
 

Uses of Resource in org.rhq.core.domain.resource.group.composite
 

Methods in org.rhq.core.domain.resource.group.composite that return Resource
 Resource AutoGroupComposite.getParentResource()
           
 

Methods in org.rhq.core.domain.resource.group.composite that return types with arguments of type Resource
 List<Resource> AutoGroupComposite.getResources()
           
 

Methods in org.rhq.core.domain.resource.group.composite with parameters of type Resource
 void AutoGroupComposite.setParentResource(Resource parentResource)
           
 

Method parameters in org.rhq.core.domain.resource.group.composite with type arguments of type Resource
 void AutoGroupComposite.setResources(List<Resource> resources)
           
 

Constructors in org.rhq.core.domain.resource.group.composite with parameters of type Resource
AutoGroupComposite(Double availability, Resource parentResource, ResourceSubCategory subcategory, long memberCount)
           
AutoGroupComposite(Double availability, Resource parentResource, ResourceType resourceType, long memberCount)
           
AutoGroupComposite(Double availability, Resource parentResource, ResourceType resourceType, long memberCount, boolean isDuplicateResourceTypeName)
           
 

Uses of Resource in org.rhq.core.domain.util
 

Methods in org.rhq.core.domain.util with parameters of type Resource
static boolean ResourceUtils.isPlatform(Resource resource)
           
static boolean ResourceUtils.isServer(Resource resource)
           
static boolean ResourceUtils.isService(Resource resource)
           
 



Copyright © 2008-2009 RHQ Project Advisory Board (Red Hat, Inc.). All Rights Reserved.