Package org.osgi.resource
Interface Resource
- All Known Subinterfaces:
 BundleRevision
- All Known Implementing Classes:
 BundleRevisionImpl
@ConsumerType
public interface Resource
A resource is the representation of a uniquely identified and typed data. A
 resource declares requirements that need to be satisfied by capabilities
 before it can provide its capabilities.
 
 
Instances of this type must be effectively immutable. That is, for a given instance of this interface, the methods defined by this interface must always return the same result.
- Author:
 - $Id: c7b6462fb53b38ac3071d7ba73af9dad2af6b9ce $
 
- 
Method Summary
Modifier and TypeMethodDescriptionbooleanCompares thisResourceto anotherResource.getCapabilities(String namespace) Returns the capabilities declared by this resource.getRequirements(String namespace) Returns the requirements declared by this bundle resource.inthashCode()Returns the hashCode of thisResource. 
- 
Method Details
- 
getCapabilities
Returns the capabilities declared by this resource.- Parameters:
 namespace- The namespace of the declared capabilities to return ornullto return the declared capabilities from all namespaces.- Returns:
 - An unmodifiable list containing the declared 
Capabilitys from the specified namespace. The returned list will be empty if this resource declares no capabilities in the specified namespace. 
 - 
getRequirements
Returns the requirements declared by this bundle resource.- Parameters:
 namespace- The namespace of the declared requirements to return ornullto return the declared requirements from all namespaces.- Returns:
 - An unmodifiable list containing the declared 
Requirements from the specified namespace. The returned list will be empty if this resource declares no requirements in the specified namespace. 
 - 
equals
Compares thisResourceto anotherResource.This
Resourceis equal to anotherResourceif both have the same content and come from the same location. Location may be defined as the bundle location if the resource is an installed bundle or the repository location if the resource is in a repository. - 
hashCode
int hashCode()Returns the hashCode of thisResource. 
 -