You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "Neil Bartlett (JIRA)" <ji...@apache.org> on 2016/11/02 10:39:58 UTC

[jira] [Created] (FELIX-5391) AbstractMethodError in bundlerepository due to wrong import range.

Neil Bartlett created FELIX-5391:
------------------------------------

             Summary: AbstractMethodError in bundlerepository due to wrong import range.
                 Key: FELIX-5391
                 URL: https://issues.apache.org/jira/browse/FELIX-5391
             Project: Felix
          Issue Type: Bug
          Components: Bundle Repository (OBR)
            Reporter: Neil Bartlett


Bundle org.apache.felix.bundlerepository imports package {{org.osgi.service.repository}} using the range {{[1.0,2.0)}}. This is incorrect because it is a provider of that contract, so the range should be {{[1.0,1.1)}}.

At runtime this leads to AbstractMethodError because a client could wire to version 1.1 of the API and try to call one of the new methods such as {{Repository.newRequirementBuilder()}}, which is not implemented by Felix:

{noformat}
java.lang.AbstractMethodError: org.apache.felix.bundlerepository.impl.OSGiRepositoryImpl.newRequirementBuilder(Ljava/lang/String;)Lorg/osgi/service/repository/RequirementBuilder;
{noformat}

Affects version: 2.0.8 (not available in the JIRA dropdown for some reason).



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)