Uses of Class
org.gridlab.gat.resources.ResourceDescription

Packages that use ResourceDescription
org.gridlab.gat.resources This package contains the classes and interfaces which are used for using resources, be they hardware or software resources. 
 

Uses of ResourceDescription in org.gridlab.gat.resources
 

Subclasses of ResourceDescription in org.gridlab.gat.resources
 class HardwareResourceDescription
          An instance of this class is a description of a hardware resource, a physical entity, which a may be required by a hardware or software component.
 class SoftwareResourceDescription
          An instance of this class is a description of a software resource, which may be required by a hardware or software component.
 

Methods in org.gridlab.gat.resources that return ResourceDescription
 ResourceDescription JobDescription.getResourceDescription()
          Returns the ResourceDescription associated with this JobDescription.
 ResourceDescription Resource.getResourceDescription()
          Returns the ResourceDescription which describes this Resource instance.
 

Methods in org.gridlab.gat.resources with parameters of type ResourceDescription
 void ResourceDescription.addResourceDescription(ResourceDescription hardwareResourceDescription)
          Adds the passed HardwareResourceDescription to the List of HardwareResourceDescriptions which describe this Resource.
 List<HardwareResource> ResourceBroker.findResources(ResourceDescription resourceDescription)
          This method attempts to find one or more matching HardwareResources.
 void ResourceDescription.removeResourceDescription(ResourceDescription hardwareResourceDescription)
          Removes the passed HardwareResourceDescription from the List of HardwareResourceDescriptions which describe this Resource.
 Reservation ResourceBroker.reserveResource(ResourceDescription resourceDescription, TimePeriod timePeriod)
          This method attempts to reserve the specified Resource for the specified TimePeriod.
 void JobDescription.setResourceDescription(ResourceDescription resourceDescription)
          Set the ResourceDescription associated with this JobDescription.
 

Constructors in org.gridlab.gat.resources with parameters of type ResourceDescription
JobDescription(SoftwareDescription softwareDescription, ResourceDescription resourceDescription)
          Create a JobDescription out of a SoftwareDescription and a ResourceDescription.
WrapperJobDescription(WrapperSoftwareDescription softwareDescription, ResourceDescription resourceDescription)
          Creates a WrapperJobDescription based on the given WrapperSoftwareDescription and the ResourceDescription.
 

Constructor parameters in org.gridlab.gat.resources with type arguments of type ResourceDescription
HardwareResourceDescription(Map<String,Object> attributes, List<ResourceDescription> resourceDescriptions)
          Constructs a HardwareResourceDescription associated with the passed objects.
SoftwareResourceDescription(Map<String,Object> attributes, List<ResourceDescription> resourceDescriptions)
          Constructs a SoftwareResourceDescription associated with the passed objects.