Uses of Interface
org.osgi.framework.ServiceRegistration
-
Packages that use ServiceRegistration Package Description org.apache.felix.framework org.osgi.framework Framework Package Version 1.8. -
-
Uses of ServiceRegistration in org.apache.felix.framework
Classes in org.apache.felix.framework that implement ServiceRegistration Modifier and Type Class Description (package private) classServiceRegistrationImplFields in org.apache.felix.framework declared as ServiceRegistration Modifier and Type Field Description private ServiceRegistration<PackageAdmin>FrameworkWiringImpl. m_paRegprivate ServiceRegistration<StartLevel>FrameworkStartLevelImpl. m_slRegFields in org.apache.felix.framework with type parameters of type ServiceRegistration Modifier and Type Field Description private java.util.Map<ServiceRegistration<?>,java.lang.Object>ServiceRegistry. m_lockedRegsMapMethods in org.apache.felix.framework that return ServiceRegistration Modifier and Type Method Description private static ServiceRegistration<?>[]ServiceRegistry. addServiceRegistration(ServiceRegistration<?>[] regs, ServiceRegistration<?> reg)<S> ServiceRegistration<S>BundleContextImpl. registerService(java.lang.Class<S> clazz, ServiceFactory<S> factory, java.util.Dictionary<java.lang.String,?> properties)<S> ServiceRegistration<S>BundleContextImpl. registerService(java.lang.Class<S> clazz, S svcObj, java.util.Dictionary<java.lang.String,?> dict)ServiceRegistration<?>BundleContextImpl. registerService(java.lang.String[] clazzes, java.lang.Object svcObj, java.util.Dictionary<java.lang.String,?> dict)ServiceRegistration<?>BundleContextImpl. registerService(java.lang.String clazz, java.lang.Object svcObj, java.util.Dictionary<java.lang.String,?> dict)(package private) ServiceRegistrationFelix. registerService(BundleContextImpl context, java.lang.String[] classNames, java.lang.Object svcObj, java.util.Dictionary dict)Implementation for BundleContext.registerService().ServiceRegistration<?>ServiceRegistry. registerService(BundleContext context, java.lang.String[] classNames, java.lang.Object svcObj, java.util.Dictionary dict)private static ServiceRegistration<?>[]ServiceRegistry. removeServiceRegistration(ServiceRegistration<?>[] regs, ServiceRegistration<?> reg)Methods in org.apache.felix.framework with parameters of type ServiceRegistration Modifier and Type Method Description private static ServiceRegistration<?>[]ServiceRegistry. addServiceRegistration(ServiceRegistration<?>[] regs, ServiceRegistration<?> reg)private static ServiceRegistration<?>[]ServiceRegistry. removeServiceRegistration(ServiceRegistration<?>[] regs, ServiceRegistration<?> reg)(package private) voidServiceRegistry. servicePropertiesModified(ServiceRegistration<?> reg, java.util.Dictionary oldProps)voidServiceRegistry. unregisterService(Bundle bundle, ServiceRegistration<?> reg) -
Uses of ServiceRegistration in org.osgi.framework
Methods in org.osgi.framework that return ServiceRegistration Modifier and Type Method Description <S> ServiceRegistration<S>BundleContext. registerService(java.lang.Class<S> clazz, ServiceFactory<S> factory, java.util.Dictionary<java.lang.String,?> properties)Registers the specified service factory object with the specified properties under the name of the specified class with the Framework.<S> ServiceRegistration<S>BundleContext. registerService(java.lang.Class<S> clazz, S service, java.util.Dictionary<java.lang.String,?> properties)Registers the specified service object with the specified properties under the name of the specified class with the Framework.ServiceRegistration<?>BundleContext. registerService(java.lang.String[] clazzes, java.lang.Object service, java.util.Dictionary<java.lang.String,?> properties)Registers the specified service object with the specified properties under the specified class names into the Framework.ServiceRegistration<?>BundleContext. registerService(java.lang.String clazz, java.lang.Object service, java.util.Dictionary<java.lang.String,?> properties)Registers the specified service object with the specified properties under the specified class name with the Framework.Methods in org.osgi.framework with parameters of type ServiceRegistration Modifier and Type Method Description SPrototypeServiceFactory. getService(Bundle bundle, ServiceRegistration<S> registration)Returns a service object for a caller.SServiceFactory. getService(Bundle bundle, ServiceRegistration<S> registration)Returns a service object for a bundle.voidPrototypeServiceFactory. ungetService(Bundle bundle, ServiceRegistration<S> registration, S service)Releases a service object customized for a caller.voidServiceFactory. ungetService(Bundle bundle, ServiceRegistration<S> registration, S service)Releases a service object customized for a bundle.
-