Interface ReferenceManager<S,T>
-
- All Known Implementing Classes:
DependencyManager
public interface ReferenceManager<S,T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetName()Returns the name of the service reference.java.util.List<org.osgi.framework.ServiceReference<?>>getServiceReferences()Returns an array ofServiceReferenceinstances of all services this instance is bound to ornullif no services are actually bound.java.lang.StringgetTarget()Returns the target filter of this dependency as a string ornullif this dependency has no target filter set.booleanisSatisfied()
-
-
-
Method Detail
-
getServiceReferences
java.util.List<org.osgi.framework.ServiceReference<?>> getServiceReferences()
Returns an array ofServiceReferenceinstances of all services this instance is bound to ornullif no services are actually bound.
-
getName
java.lang.String getName()
Returns the name of the service reference.
-
getTarget
java.lang.String getTarget()
Returns the target filter of this dependency as a string ornullif this dependency has no target filter set.- Returns:
- The target filter of this dependency or
nullif none is set.
-
isSatisfied
boolean isSatisfied()
-
-