Interface ModuleContainerFinder
-
public interface ModuleContainerFinder
The module container finder service. This service is used to find acontainer
for a specific bundle location. The module container finder service is used by aModuleBundleFileFactory
service implementation to find a container that can be used as the content of a root bundle file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Container
findContainer(java.lang.String location)
Finds acontainer
for the specified bundle location.
-
-
-
Method Detail
-
findContainer
Container findContainer(java.lang.String location)
Finds acontainer
for the specified bundle location. The bundle location is the same location that is used to install the bundle into the framework. The returned container will be used as the content of the root bundle file of the bundle which has the specified location.- Parameters:
location
- The bundle location to find a container for- Returns:
- the container for the bundle or
null
if none is found.
-
-