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   
org.rhq.core.pluginapi.inventory   
 

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 PluginConfigurationUpdate.getResource()
           
 Resource ResourceConfigurationUpdate.getResource()
           
 

Methods in org.rhq.core.domain.configuration with parameters of type Resource
 void PluginConfigurationUpdate.setResource(Resource resource)
           
 void ResourceConfigurationUpdate.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 AggregatePluginConfigurationUpdate.getPluginConfigurationUpdate(Resource updateTarget)
           
 

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

Methods in org.rhq.core.domain.content that return Resource
 Resource ContentServiceRequest.getResource()
           
 Resource InstalledPackage.getResource()
          Resource where the package is installed.
 Resource InstalledPackageHistory.getResource()
           
 Resource ResourceChannelPK.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 ContentServiceRequest.setResource(Resource resource)
           
 void InstalledPackage.setResource(Resource resource)
           
 void InstalledPackageHistory.setResource(Resource resource)
           
 void ResourceChannelPK.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 Availability.getResource()
           
 Resource MeasurementSchedule.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
 

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

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

Methods in org.rhq.core.domain.operation with parameters of type Resource
 void ResourceOperationHistory.setResource(Resource resource)
           
 void ResourceOperationScheduleEntity.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 CreateResourceHistory.getParentResource()
           
 Resource Resource.getParentResource()
           
 Resource DeleteResourceHistory.getResource()
           
 Resource ResourceError.getResource()
           
 

Methods in org.rhq.core.domain.resource that return types with arguments of type Resource
 Set<Resource> Resource.getChildResources()
           
 Set<Resource> ProductVersion.getResources()
           
 List<Resource> ResourceType.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 CreateResourceHistory.setParentResource(Resource parentResource)
           
 void Resource.setParentResource(Resource parentResource)
           
 void DeleteResourceHistory.setResource(Resource resource)
           
 void ResourceError.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
 

Methods in org.rhq.core.domain.resource.composite that return Resource
 Resource ResourceComposite.getResource()
           
 Resource ResourceMembershipComposite.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
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.
ResourceMembershipComposite(Resource resource, Number explicitCount, Number implicitCount)
           
ResourceWithAvailability(Resource resource, AvailabilityType availabilityType)
           
ResourceWithAvailability(Resource resource, AvailabilityType availabilityType, Number explicitCount, Number implicitCount)
           
 

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)
           
 

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

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

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

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)
           
 

Uses of Resource in org.rhq.core.pluginapi.inventory
 

Constructors in org.rhq.core.pluginapi.inventory with parameters of type Resource
ResourceContext(Resource resource, T parentResourceComponent, ResourceDiscoveryComponent resourceDiscoveryComponent, SystemInfo systemInfo, File temporaryDirectory, File dataDirectory, String pluginContainerName, EventContext eventContext, OperationContext operationContext, ContentContext contentContext)
          Creates a new ResourceContext object.
 



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