Top Description Fields Constructors Methods
org.osgi.service.component.runtime.dto

public Class ComponentDescriptionDTO

extends DTO
Class Inheritance
Imports
java.util.Map, org.osgi.dto.DTO, org.osgi.framework.dto.BundleDTO

A representation of a declared component description.
Author
$Id: 30dba03736a99328cd945a89681be2fe62d0c671 $
Since
1.3

Field Summary

Modifier and TypeField and Description
public String
activate

The name of the activate method.

public String[]
activationFields

The activation fields.

public BundleDTO
bundle

The bundle declaring the component description.

public String[]
configurationPid

The configuration pids.

public String
configurationPolicy

The configuration policy.

public String
deactivate

The name of the deactivate method.

public boolean
defaultEnabled

The initial enabled state.

public String
factory

The component factory name.

public Map<String, Object>
factoryProperties

The factory properties.

public boolean
immediate

The immediate state.

public String
implementationClass

The fully qualified name of the implementation class.

public int
init

The constructor parameter count.

public String
modified

The name of the modified method.

public String
name

The name of the component.

public Map<String, Object>
properties

The component properties.

public ReferenceDTO[]
references

The referenced services.

public String
scope

The service scope.

public String[]
serviceInterfaces

The fully qualified names of the service interfaces.

Constructor Summary

AccessConstructor and Description
public

Method Summary

Inherited from org.osgi.dto.DTO:
toString

Field Detail

activateback to summary
public String activate

The name of the activate method.

This is declared in the activate attribute of the component element. This must be null if the component description does not declare an activate method name.

activationFieldsback to summary
public String[] activationFields

The activation fields.

These are declared in the activation-fields attribute of the component element. The array must be empty if the component description does not declare any activation fields.

Since
1.4
bundleback to summary
public BundleDTO bundle

The bundle declaring the component description.

configurationPidback to summary
public String[] configurationPid

The configuration pids.

These are declared in the configuration-pid attribute of the component element. This must contain the default configuration pid if the component description does not declare a configuration pid.

configurationPolicyback to summary
public String configurationPolicy

The configuration policy.

This is declared in the configuration-policy attribute of the component element. This must be the default configuration policy if the component description does not declare a configuration policy.

deactivateback to summary
public String deactivate

The name of the deactivate method.

This is declared in the deactivate attribute of the component element. This must be null if the component description does not declare a deactivate method name.

defaultEnabledback to summary
public boolean defaultEnabled

The initial enabled state.

This is declared in the enabled attribute of the component element.

factoryback to summary
public String factory

The component factory name.

This is declared in the factory attribute of the component element. This must be null if the component description is not declared as a factory component.

factoryPropertiesback to summary
public Map<String, Object> factoryProperties

The factory properties.

These are declared in the component description by the factory-property and factory-properties elements. This must be null if the component description is not declared as a factory component.

Since
1.4
immediateback to summary
public boolean immediate

The immediate state.

This is declared in the immediate attribute of the component element.

implementationClassback to summary
public String implementationClass

The fully qualified name of the implementation class.

This is declared in the class attribute of the implementation element.

initback to summary
public int init

The constructor parameter count.

This is declared in the init attribute of the component element. This must be 0 if the component description does not declare an init attribute.

Since
1.4
modifiedback to summary
public String modified

The name of the modified method.

This is declared in the modified attribute of the component element. This must be null if the component description does not declare a modified method name.

nameback to summary
public String name

The name of the component.

This is declared in the name attribute of the component element. This must be the default name if the component description does not declare a name.

propertiesback to summary
public Map<String, Object> properties

The component properties.

These are declared in the component description by the property and properties elements as well as the target attribute of the reference elements.

referencesback to summary
public ReferenceDTO[] references

The referenced services.

These are declared in the reference elements. The array must be empty if the component description does not declare references to any services.

scopeback to summary
public String scope

The service scope.

This is declared in the scope attribute of the service element. This must be null if the component description does not declare any service interfaces.

serviceInterfacesback to summary
public String[] serviceInterfaces

The fully qualified names of the service interfaces.

These are declared in the interface attribute of the provide elements. The array must be empty if the component description does not declare any service interfaces.

Constructor Detail

ComponentDescriptionDTOback to summary
public ComponentDescriptionDTO()