Uses of Interface
org.osgi.framework.Bundle

Packages that use Bundle
org.apache.felix.framework   
org.apache.felix.framework.ext   
org.apache.felix.framework.resolver   
org.apache.felix.framework.util   
org.eclipse.core.runtime.internal.adaptor   
org.eclipse.core.runtime.internal.stats   
org.eclipse.osgi.baseadaptor   
org.eclipse.osgi.framework.adaptor   
org.eclipse.osgi.framework.console   
org.eclipse.osgi.framework.internal.core   
org.eclipse.osgi.framework.util   
org.eclipse.osgi.internal.baseadaptor   
org.eclipse.osgi.internal.composite   
org.eclipse.osgi.internal.loader   
org.eclipse.osgi.internal.permadmin   
org.eclipse.osgi.internal.provisional.verifier   
org.eclipse.osgi.internal.serviceregistry   
org.eclipse.osgi.internal.signedcontent   
org.eclipse.osgi.launch   
org.eclipse.osgi.service.localization   
org.eclipse.osgi.signedcontent   
org.osgi.framework Framework Package Version 1.5. 
org.osgi.framework.launch Framework Launch Package Version 1.0. 
org.osgi.service.condpermadmin Conditional Permission Admin Package Version 1.1. 
org.osgi.service.framework   
org.osgi.service.packageadmin Package Admin Package Version 1.2. 
org.osgi.service.startlevel Start Level Package Version 1.1. 
org.osgi.util.tracker Tracker Package Version 1.4. 
 

Uses of Bundle in org.apache.felix.framework
 

Classes in org.apache.felix.framework that implement Bundle
 class Felix
           
 

Methods in org.apache.felix.framework that return Bundle
 Bundle ModuleImpl.getBundle()
           
 Bundle ModuleImpl.ModuleClassLoader.getBundle()
           
 Bundle[] ServiceRegistry.getUsingBundles(ServiceReference ref)
           
 

Methods in org.apache.felix.framework with parameters of type Bundle
protected  void Logger.doLog(Bundle bundle, ServiceReference sr, int level, java.lang.String msg, java.lang.Throwable throwable)
           
 int StartLevelImpl.getBundleStartLevel(Bundle bundle)
           
 ServiceReference[] ServiceRegistry.getRegisteredServices(Bundle bundle)
           
 java.lang.Object ServiceRegistry.getService(Bundle bundle, ServiceReference ref)
           
 ServiceReference[] ServiceRegistry.getServicesInUse(Bundle bundle)
           
 boolean StartLevelImpl.isBundleActivationPolicyUsed(Bundle bundle)
           
 boolean StartLevelImpl.isBundlePersistentlyStarted(Bundle bundle)
           
 void Logger.log(Bundle bundle, int level, java.lang.String msg)
           
 void Logger.log(Bundle bundle, int level, java.lang.String msg, java.lang.Throwable throwable)
           
 ServiceRegistration ServiceRegistry.registerService(Bundle bundle, java.lang.String[] classNames, java.lang.Object svcObj, java.util.Dictionary dict)
           
 void StartLevelImpl.setBundleStartLevel(Bundle bundle, int startlevel)
           
 boolean ServiceRegistry.ungetService(Bundle bundle, ServiceReference ref)
           
 void ServiceRegistry.ungetServices(Bundle bundle)
          This is a utility method to release all services being used by the specified bundle.
 void ServiceRegistry.unregisterService(Bundle bundle, ServiceRegistration reg)
           
 void ServiceRegistry.unregisterServices(Bundle bundle)
          This method retrieves all services registrations for the specified bundle and invokes ServiceRegistration.unregister() on each one.
 

Constructors in org.apache.felix.framework with parameters of type Bundle
ModuleImpl(Logger logger, java.util.Map configMap, Bundle bundle, java.lang.String id, java.lang.String[] bootPkgs, boolean[] bootPkgWildcards)
          This constructor is used by the extension manager, since it needs a constructor that does not throw an exception.
 

Uses of Bundle in org.apache.felix.framework.ext
 

Methods in org.apache.felix.framework.ext with parameters of type Bundle
 void SecurityProvider.checkBundle(Bundle bundle)
           
 java.lang.Object SecurityProvider.getSignerMatcher(Bundle bundle, int signersType)
           
 

Uses of Bundle in org.apache.felix.framework.resolver
 

Methods in org.apache.felix.framework.resolver that return Bundle
 Bundle Module.getBundle()
           
 

Uses of Bundle in org.apache.felix.framework.util
 

Methods in org.apache.felix.framework.util with parameters of type Bundle
 Filter EventDispatcher.addListener(Bundle bundle, java.lang.Class clazz, java.util.EventListener l, Filter filter)
           
static boolean Util.isServiceAssignable(Bundle requester, ServiceReference ref)
          This method determines if the requesting bundle is able to cast the specified service reference based on class visibility rules of the underlying modules.
 ListenerHook.ListenerInfo EventDispatcher.removeListener(Bundle bundle, java.lang.Class clazz, java.util.EventListener l)
           
 void EventDispatcher.removeListeners(Bundle bundle)
           
 Filter EventDispatcher.updateListener(Bundle bundle, java.lang.Class clazz, java.util.EventListener l, Filter filter)
           
 

Uses of Bundle in org.eclipse.core.runtime.internal.adaptor
 

Methods in org.eclipse.core.runtime.internal.adaptor with parameters of type Bundle
 java.util.ResourceBundle BundleLocalizationImpl.getLocalization(Bundle bundle, java.lang.String locale)
          The getLocalization method gets a ResourceBundle object for the given locale and bundle.
 

Uses of Bundle in org.eclipse.core.runtime.internal.stats
 

Methods in org.eclipse.core.runtime.internal.stats with parameters of type Bundle
 void StatsManager.endActivation(Bundle symbolicName)
           
 void StatsManager.startActivation(Bundle bundle)
           
 void StatsManager.watchBundle(Bundle bundle, int type)
           
 

Uses of Bundle in org.eclipse.osgi.baseadaptor
 

Methods in org.eclipse.osgi.baseadaptor that return Bundle
 Bundle BaseData.getBundle()
          Returns the bundle object of this BaseData
 

Methods in org.eclipse.osgi.baseadaptor with parameters of type Bundle
 void BaseData.setBundle(Bundle bundle)
           
 

Uses of Bundle in org.eclipse.osgi.framework.adaptor
 

Methods in org.eclipse.osgi.framework.adaptor that return Bundle
 Bundle BundleProtectionDomain.getBundle()
           
 

Methods in org.eclipse.osgi.framework.adaptor with parameters of type Bundle
 void EventPublisher.publishFrameworkEvent(int type, Bundle bundle, java.lang.Throwable throwable)
          Publish a FrameworkEvent.
 void BundleData.setBundle(Bundle bundle)
          Sets the Bundle object for this BundleData.
 void BundleProtectionDomain.setBundle(Bundle bundle)
          Sets the bundle object associated with this protection domain.
 void BundleWatcher.watchBundle(Bundle bundle, int type)
          Receives notification that a lifecycle change is going to start or has ended.
 

Constructors in org.eclipse.osgi.framework.adaptor with parameters of type Bundle
BundleProtectionDomain(java.security.PermissionCollection permCollection, java.security.CodeSource codeSource, Bundle bundle)
          Constructs a special ProtectionDomain for a bundle.
 

Uses of Bundle in org.eclipse.osgi.framework.console
 

Methods in org.eclipse.osgi.framework.console with parameters of type Bundle
 java.lang.Object ConsoleSession.getService(Bundle bundle, ServiceRegistration registration)
           
 void CommandInterpreter.printBundleResource(Bundle bundle, java.lang.String resource)
          Prints the given bundle resource if it exists
 void ConsoleSession.ungetService(Bundle bundle, ServiceRegistration registration, java.lang.Object service)
           
 

Uses of Bundle in org.eclipse.osgi.framework.internal.core
 

Classes in org.eclipse.osgi.framework.internal.core that implement Bundle
 class AbstractBundle
          This object is given out to bundles and wraps the internal Bundle object.
 class BundleFragment
           
 class BundleHost
           
 class EquinoxLauncher
           
 class InternalSystemBundle
          This class subclasses Bundle to provide a system Bundle so that the framework can be represented as a bundle and can access the services provided by other bundles.
 

Methods in org.eclipse.osgi.framework.internal.core that return Bundle
 Bundle BundleContextImpl.getBundle()
          Retrieve the Bundle object for the context bundle.
 Bundle PackageAdminImpl.getBundle(java.lang.Class clazz)
           
 Bundle BundleContextImpl.getBundle(long id)
          Retrieve the bundle that has the given unique identifier.
 Bundle[] BundleContextImpl.getBundles()
          Retrieve a list of all installed bundles.
 Bundle[] PackageAdminImpl.getBundles(java.lang.String symbolicName, java.lang.String versionRange)
           
 Bundle ExportedPackageImpl.getExportingBundle()
           
 Bundle[] PackageAdminImpl.getFragments(Bundle bundle)
           
 Bundle[] PackageAdminImpl.getHosts(Bundle bundle)
           
 Bundle[] ExportedPackageImpl.getImportingBundles()
           
 Bundle BundleContextImpl.installBundle(java.lang.String location)
           
 Bundle BundleContextImpl.installBundle(java.lang.String location, java.io.InputStream in)
           
 

Methods in org.eclipse.osgi.framework.internal.core with parameters of type Bundle
protected  void Framework.checkAdminPermission(Bundle bundle, java.lang.String action)
          Check for specific AdminPermission (RFC 73)
protected  boolean BundleResourceHandler.checkAuthorization(Bundle bundle)
           
 int StartLevelManager.getBundleStartLevel(Bundle bundle)
          Return the assigned start level value for the specified Bundle.
 int PackageAdminImpl.getBundleType(Bundle bundle)
           
 ExportedPackage[] PackageAdminImpl.getExportedPackages(Bundle bundle)
           
 Bundle[] PackageAdminImpl.getFragments(Bundle bundle)
           
 Bundle[] PackageAdminImpl.getHosts(Bundle bundle)
           
protected  java.lang.String FrameworkCommandProvider.getStateName(Bundle bundle)
          Given a bundle, return the string describing that bundle's state.
 boolean StartLevelManager.isBundleActivationPolicyUsed(Bundle bundle)
           
 boolean StartLevelManager.isBundlePersistentlyStarted(Bundle bundle)
          Return the persistent state of the specified bundle.
 boolean Framework.isServiceAssignableTo(Bundle registrant, Bundle client, java.lang.String className, java.lang.Class serviceClass)
          Used by ServiceReferenceImpl for isAssignableTo
 void FrameworkCommandInterpreter.printBundleResource(Bundle bundle, java.lang.String resource)
          Prints the given bundle resource if it exists
 void Framework.publishBundleEvent(int type, Bundle bundle)
          Deliver a BundleEvent to SynchronousBundleListeners (synchronous).
 void Framework.publishFrameworkEvent(int type, Bundle bundle, java.lang.Throwable throwable)
          Deliver a FrameworkEvent.
 void PackageAdminImpl.refreshPackages(Bundle[] input)
           
 void PackageAdminImpl.refreshPackages(Bundle[] input, boolean synchronously)
           
 boolean PackageAdminImpl.resolveBundles(Bundle[] bundles)
           
 void StartLevelManager.setBundleStartLevel(Bundle bundle, int newSL)
          Assign a start level value to the specified Bundle.
 void StartLevelManager.setStartLevel(int newSL, Bundle callerBundle)
          Modify the active start level of the Framework.
 

Uses of Bundle in org.eclipse.osgi.framework.util
 

Methods in org.eclipse.osgi.framework.util with parameters of type Bundle
 void SecureAction.start(Bundle bundle)
          Starts a bundle
 void SecureAction.start(Bundle bundle, int options)
          Starts a bundle.
 

Uses of Bundle in org.eclipse.osgi.internal.baseadaptor
 

Methods in org.eclipse.osgi.internal.baseadaptor that return Bundle
 Bundle DefaultClassLoader.getBundle()
           
 

Uses of Bundle in org.eclipse.osgi.internal.composite
 

Classes in org.eclipse.osgi.internal.composite that implement Bundle
 class CompositeBase
          This is a base class for both composite and surrogate bundles.
 class CompositeImpl
           
 class SurrogateImpl
           
 

Methods in org.eclipse.osgi.internal.composite that return Bundle
 Bundle CompositeClassLoader.getBundle()
           
protected  Bundle CompositeImpl.getCompanionBundle()
           
protected  Bundle SurrogateImpl.getCompanionBundle()
           
protected abstract  Bundle CompositeBase.getCompanionBundle()
           
 

Uses of Bundle in org.eclipse.osgi.internal.loader
 

Methods in org.eclipse.osgi.internal.loader that return Bundle
 Bundle BundleLoaderProxy.getBundle()
           
 Bundle[] BundleLoaderProxy.getRequiringBundles()
           
 

Uses of Bundle in org.eclipse.osgi.internal.permadmin
 

Methods in org.eclipse.osgi.internal.permadmin that return Bundle
 Bundle BundlePermissions.getBundle()
           
 

Methods in org.eclipse.osgi.internal.permadmin with parameters of type Bundle
 BundleProtectionDomain SecurityAdmin.createProtectionDomain(Bundle bundle)
           
 

Constructors in org.eclipse.osgi.internal.permadmin with parameters of type Bundle
BundlePermissions(Bundle bundle, SecurityAdmin securityAdmin, PermissionInfoCollection impliedPermissions, PermissionInfoCollection restrictedPermissions)
           
 

Uses of Bundle in org.eclipse.osgi.internal.provisional.verifier
 

Methods in org.eclipse.osgi.internal.provisional.verifier with parameters of type Bundle
 CertificateVerifier CertificateVerifierFactory.getVerifier(Bundle bundle)
          Returns a certificate verifier for the specified bundle.
 

Uses of Bundle in org.eclipse.osgi.internal.serviceregistry
 

Methods in org.eclipse.osgi.internal.serviceregistry that return Bundle
 Bundle ServiceReferenceImpl.getBundle()
          Returns the bundle that registered the service referenced by this ServiceReference object.
 Bundle[] ServiceReferenceImpl.getUsingBundles()
          Returns the bundles that are using the service referenced by this ServiceReference object.
 

Methods in org.eclipse.osgi.internal.serviceregistry with parameters of type Bundle
 boolean ServiceReferenceImpl.isAssignableTo(Bundle bundle, java.lang.String className)
          Tests if the bundle that registered the service referenced by this ServiceReference and the specified bundle use the same source for the package of the specified class name.
 

Uses of Bundle in org.eclipse.osgi.internal.signedcontent
 

Methods in org.eclipse.osgi.internal.signedcontent with parameters of type Bundle
 SignedContent SignedBundleHook.getSignedContent(Bundle bundle)
           
 CertificateVerifier LegacyVerifierFactory.getVerifier(Bundle bundle)
           
 

Uses of Bundle in org.eclipse.osgi.launch
 

Classes in org.eclipse.osgi.launch that implement Bundle
 class Equinox
          The System Bundle implementation for the Equinox Framework.
 

Uses of Bundle in org.eclipse.osgi.service.localization
 

Methods in org.eclipse.osgi.service.localization with parameters of type Bundle
 java.util.ResourceBundle BundleLocalization.getLocalization(Bundle bundle, java.lang.String locale)
          The getLocalization method gets a ResourceBundle object for the given locale and bundle.
 

Uses of Bundle in org.eclipse.osgi.signedcontent
 

Methods in org.eclipse.osgi.signedcontent with parameters of type Bundle
 SignedContent SignedContentFactory.getSignedContent(Bundle bundle)
          Returns a SignedContent object for the specified bundle.
 

Uses of Bundle in org.osgi.framework
 

Methods in org.osgi.framework that return Bundle
 Bundle BundleEvent.getBundle()
          Returns the bundle which had a lifecycle change.
 Bundle FrameworkEvent.getBundle()
          Returns the bundle associated with the event.
 Bundle BundleReference.getBundle()
          Returns the Bundle object associated with this BundleReference.
 Bundle ServiceReference.getBundle()
          Returns the bundle that registered the service referenced by this ServiceReference object.
 Bundle BundleContext.getBundle()
          Returns the Bundle object associated with this BundleContext.
static Bundle FrameworkUtil.getBundle(java.lang.Class classFromBundle)
          Return a Bundle for the specified bundle class.
 Bundle BundleContext.getBundle(long id)
          Returns the bundle with the specified identifier.
 Bundle[] BundleContext.getBundles()
          Returns a list of all installed bundles.
 Bundle[] ServiceReference.getUsingBundles()
          Returns the bundles that are using the service referenced by this ServiceReference object.
 Bundle BundleContext.installBundle(java.lang.String location)
          Installs a bundle from the specified location identifier.
 Bundle BundleContext.installBundle(java.lang.String location, java.io.InputStream input)
          Installs a bundle from the specified InputStream object.
 

Methods in org.osgi.framework with parameters of type Bundle
 java.lang.Object ServiceFactory.getService(Bundle bundle, ServiceRegistration registration)
          Creates a new service object.
 boolean ServiceReference.isAssignableTo(Bundle bundle, java.lang.String className)
          Tests if the bundle that registered the service referenced by this ServiceReference and the specified bundle use the same source for the package of the specified class name.
 void ServiceFactory.ungetService(Bundle bundle, ServiceRegistration registration, java.lang.Object service)
          Releases a service object.
 

Constructors in org.osgi.framework with parameters of type Bundle
AdminPermission(Bundle bundle, java.lang.String actions)
          Creates a new requested AdminPermission object to be used by the code that must perform checkPermission.
BundleEvent(int type, Bundle bundle)
          Creates a bundle event of the specified type.
FrameworkEvent(int type, Bundle bundle, java.lang.Throwable throwable)
          Creates a Framework event regarding the specified bundle.
PackagePermission(java.lang.String name, Bundle exportingBundle, java.lang.String actions)
          Creates a new requested PackagePermission object to be used by code that must perform checkPermission for the import action.
 

Uses of Bundle in org.osgi.framework.launch
 

Subinterfaces of Bundle in org.osgi.framework.launch
 interface Framework
          A Framework instance.
 

Uses of Bundle in org.osgi.service.condpermadmin
 

Methods in org.osgi.service.condpermadmin with parameters of type Bundle
static Condition BundleLocationCondition.getCondition(Bundle bundle, ConditionInfo info)
          Constructs a condition that tries to match the passed Bundle's location to the location pattern.
static Condition BundleSignerCondition.getCondition(Bundle bundle, ConditionInfo info)
          Constructs a Condition that tries to match the passed Bundle's location to the location pattern.
 

Uses of Bundle in org.osgi.service.framework
 

Subinterfaces of Bundle in org.osgi.service.framework
 interface CompositeBundle
          Deprecated. This is proposed API. As a result, this API may never be published or the final API may change substantially by the time of final publication. You are cautioned against relying upon this API.
 interface SurrogateBundle
          Deprecated. This is proposed API. As a result, this API may never be published or the final API may change substantially by the time of final publication. You are cautioned against relying upon this API.
 

Uses of Bundle in org.osgi.service.packageadmin
 

Methods in org.osgi.service.packageadmin that return Bundle
 Bundle RequiredBundle.getBundle()
          Returns the bundle associated with this required bundle.
 Bundle PackageAdmin.getBundle(java.lang.Class clazz)
          Returns the bundle from which the specified class is loaded.
 Bundle[] PackageAdmin.getBundles(java.lang.String symbolicName, java.lang.String versionRange)
          Returns the bundles with the specified symbolic name whose bundle version is within the specified version range.
 Bundle ExportedPackage.getExportingBundle()
          Returns the bundle exporting the package associated with this exported package.
 Bundle[] PackageAdmin.getFragments(Bundle bundle)
          Returns an array of attached fragment bundles for the specified bundle.
 Bundle[] PackageAdmin.getHosts(Bundle bundle)
          Returns the host bundles to which the specified fragment bundle is attached.
 Bundle[] ExportedPackage.getImportingBundles()
          Returns the resolved bundles that are currently wired to this exported package.
 Bundle[] RequiredBundle.getRequiringBundles()
          Returns the bundles that currently require this required bundle.
 

Methods in org.osgi.service.packageadmin with parameters of type Bundle
 int PackageAdmin.getBundleType(Bundle bundle)
          Returns the special type of the specified bundle.
 ExportedPackage[] PackageAdmin.getExportedPackages(Bundle bundle)
          Gets the exported packages for the specified bundle.
 Bundle[] PackageAdmin.getFragments(Bundle bundle)
          Returns an array of attached fragment bundles for the specified bundle.
 Bundle[] PackageAdmin.getHosts(Bundle bundle)
          Returns the host bundles to which the specified fragment bundle is attached.
 void PackageAdmin.refreshPackages(Bundle[] bundles)
          Forces the update (replacement) or removal of packages exported by the specified bundles.
 boolean PackageAdmin.resolveBundles(Bundle[] bundles)
          Resolve the specified bundles.
 

Uses of Bundle in org.osgi.service.startlevel
 

Methods in org.osgi.service.startlevel with parameters of type Bundle
 int StartLevel.getBundleStartLevel(Bundle bundle)
          Return the assigned start level value for the specified Bundle.
 boolean StartLevel.isBundleActivationPolicyUsed(Bundle bundle)
          Returns whether the specified bundle's autostart setting indicates that the activation policy declared in the bundle's manifest must be used.
 boolean StartLevel.isBundlePersistentlyStarted(Bundle bundle)
          Returns whether the specified bundle's autostart setting indicates the bundle must be started.
 void StartLevel.setBundleStartLevel(Bundle bundle, int startlevel)
          Assign a start level value to the specified Bundle.
 

Uses of Bundle in org.osgi.util.tracker
 

Methods in org.osgi.util.tracker that return Bundle
 Bundle[] BundleTracker.getBundles()
          Return an array of Bundles for all bundles being tracked by this BundleTracker.
 

Methods in org.osgi.util.tracker with parameters of type Bundle
 java.lang.Object BundleTrackerCustomizer.addingBundle(Bundle bundle, BundleEvent event)
          A bundle is being added to the BundleTracker.
 java.lang.Object BundleTracker.addingBundle(Bundle bundle, BundleEvent event)
          Default implementation of the BundleTrackerCustomizer.addingBundle method.
 java.lang.Object BundleTracker.getObject(Bundle bundle)
          Returns the customized object for the specified Bundle if the specified bundle is being tracked by this BundleTracker.
 void BundleTrackerCustomizer.modifiedBundle(Bundle bundle, BundleEvent event, java.lang.Object object)
          A bundle tracked by the BundleTracker has been modified.
 void BundleTracker.modifiedBundle(Bundle bundle, BundleEvent event, java.lang.Object object)
          Default implementation of the BundleTrackerCustomizer.modifiedBundle method.
 void BundleTracker.remove(Bundle bundle)
          Remove a bundle from this BundleTracker.
 void BundleTrackerCustomizer.removedBundle(Bundle bundle, BundleEvent event, java.lang.Object object)
          A bundle tracked by the BundleTracker has been removed.
 void BundleTracker.removedBundle(Bundle bundle, BundleEvent event, java.lang.Object object)
          Default implementation of the BundleTrackerCustomizer.removedBundle method.
 



Copyright © 2007-2012 FuseSource, Corp.. All Rights Reserved.