Uses of Class
org.osgi.service.component.runtime.dto.ComponentDescriptionDTO
-
Packages that use ComponentDescriptionDTO Package Description org.osgi.service.component.runtime Service Component Runtime Package Version 1.4.org.osgi.service.component.runtime.dto Service Component Runtime Data Transfer Objects Package Version 1.4. -
-
Uses of ComponentDescriptionDTO in org.osgi.service.component.runtime
Methods in org.osgi.service.component.runtime that return ComponentDescriptionDTO Modifier and Type Method Description ComponentDescriptionDTO
ServiceComponentRuntime. getComponentDescriptionDTO(org.osgi.framework.Bundle bundle, java.lang.String name)
Returns theComponentDescriptionDTO
declared with the specified name by the specified bundle.Methods in org.osgi.service.component.runtime that return types with arguments of type ComponentDescriptionDTO Modifier and Type Method Description java.util.Collection<ComponentDescriptionDTO>
ServiceComponentRuntime. getComponentDescriptionDTOs(org.osgi.framework.Bundle... bundles)
Returns the component descriptions declared by the specified active bundles.Methods in org.osgi.service.component.runtime with parameters of type ComponentDescriptionDTO Modifier and Type Method Description Promise<java.lang.Void>
ServiceComponentRuntime. disableComponent(ComponentDescriptionDTO description)
Disables the specified component description.Promise<java.lang.Void>
ServiceComponentRuntime. enableComponent(ComponentDescriptionDTO description)
Enables the specified component description.java.util.Collection<ComponentConfigurationDTO>
ServiceComponentRuntime. getComponentConfigurationDTOs(ComponentDescriptionDTO description)
Returns the component configurations for the specified component description.boolean
ServiceComponentRuntime. isComponentEnabled(ComponentDescriptionDTO description)
Returns whether the specified component description is currently enabled. -
Uses of ComponentDescriptionDTO in org.osgi.service.component.runtime.dto
Fields in org.osgi.service.component.runtime.dto declared as ComponentDescriptionDTO Modifier and Type Field Description ComponentDescriptionDTO
ComponentConfigurationDTO. description
The representation of the component configuration's component description.
-