Package org.osgi.resource
Interface Capability
-
- All Known Subinterfaces:
BundleCapability
,HostedCapability
@ConsumerType public interface Capability
A capability that has been declared from aResource
.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.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Compares thisCapability
to anotherCapability
.java.util.Map<java.lang.String,java.lang.Object>
getAttributes()
Returns the attributes of this capability.java.util.Map<java.lang.String,java.lang.String>
getDirectives()
Returns the directives of this capability.java.lang.String
getNamespace()
Returns the namespace of this capability.Resource
getResource()
Returns the resource declaring this capability.int
hashCode()
Returns the hashCode of thisCapability
.
-
-
-
Method Detail
-
getNamespace
java.lang.String getNamespace()
Returns the namespace of this capability.- Returns:
- The namespace of this capability.
-
getDirectives
java.util.Map<java.lang.String,java.lang.String> getDirectives()
Returns the directives of this capability.- Returns:
- An unmodifiable map of directive names to directive values for this capability, or an empty map if this capability has no directives.
-
getAttributes
java.util.Map<java.lang.String,java.lang.Object> getAttributes()
Returns the attributes of this capability.- Returns:
- An unmodifiable map of attribute names to attribute values for this capability, or an empty map if this capability has no attributes.
-
getResource
Resource getResource()
Returns the resource declaring this capability.- Returns:
- The resource declaring this capability.
-
equals
boolean equals(java.lang.Object obj)
Compares thisCapability
to anotherCapability
.This
Capability
is equal to anotherCapability
if they have the same namespace, directives and attributes and are declared by the same resource.- Overrides:
equals
in classjava.lang.Object
- Parameters:
obj
- The object to compare against thisCapability
.- Returns:
true
if thisCapability
is equal to the other object;false
otherwise.
-
hashCode
int hashCode()
Returns the hashCode of thisCapability
.- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- The hashCode of this
Capability
.
-
-