Filter parameter is ignored at getServiceReferences
---------------------------------------------------
Key: FELIX-3150
URL: https://issues.apache.org/jira/browse/FELIX-3150
Project: Felix
Issue Type: Bug
Components: Framework
Affects Versions: framework-4.0.0
Reporter: Lucas Galfaso
The method
public <S> Collection<ServiceReference<S>>
BundleContext::getServiceReferences(Class<S> clazz, String filter)
is ignoring the filter parameter. Looking at BundleContextImpl code, it looks
like that is the case
public <S> Collection<ServiceReference<S>> getServiceReferences(
Class<S> clazz, String filter)
throws InvalidSyntaxException
{
ServiceReference<S>[] refs =
(ServiceReference<S>[]) getServiceReferences(clazz.getName(), null);
/// The filter param should be here instead of the null.
return (refs == null)
? Collections.EMPTY_LIST
: (Collection<ServiceReference<S>>) Arrays.asList(refs);
}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira