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

public Class ComponentConfigurationDTO

extends DTO
Class Inheritance
Imports
java.util.Map, org.osgi.dto.DTO, org.osgi.framework.dto.ServiceReferenceDTO, org.osgi.service.component.ComponentContext

A representation of an actual instance of a declared component description parameterized by component properties.
Author
$Id: 35b53ca7822de2dec92e492408df2611776b9629 $
Since
1.3

Field Summary

Modifier and TypeField and Description
public static final int
ACTIVE

The component configuration is active.

public ComponentDescriptionDTO
description

The representation of the component configuration's component description.

public static final int
FAILED_ACTIVATION

The component configuration failed to activate.

public String
failure

The failure information if the component configuration state is FAILED_ACTIVATION.

public long
id

The id of the component configuration.

public Map<String, Object>
properties

The component properties for the component configuration.

public static final int
SATISFIED

The component configuration is satisfied.

public SatisfiedReferenceDTO[]
satisfiedReferences

The satisfied references.

public ServiceReferenceDTO
service

The registered service of the component configuration.

public int
state

The current state of the component configuration.

public static final int
UNSATISFIED_CONFIGURATION

The component configuration is unsatisfied due to a missing required configuration.

public static final int
UNSATISFIED_REFERENCE

The component configuration is unsatisfied due to an unsatisfied reference.

public UnsatisfiedReferenceDTO[]
unsatisfiedReferences

The unsatisfied references.

Constructor Summary

AccessConstructor and Description
public

Method Summary

Inherited from org.osgi.dto.DTO:
toString

Field Detail

ACTIVEback to summary
public static final int ACTIVE

The component configuration is active.

This is the normal operational state of a component configuration.

descriptionback to summary
public ComponentDescriptionDTO description

The representation of the component configuration's component description.

FAILED_ACTIVATIONback to summary
public static final int FAILED_ACTIVATION

The component configuration failed to activate.

This means the component configuration is satisfied but that either:

  • an exception occurred loading the implementation class,
  • the static initializer threw an exception,
  • the constructor threw an exception, or
  • the activate method threw an exception.
The failure information from the exception is available from failure.
Since
1.4
failureback to summary
public String failure

The failure information if the component configuration state is FAILED_ACTIVATION.

This is the failure exception converted to a String using:

StringWriter sw = new StringWriter();
exception.printStackTrace(new PrintWriter(sw));
sw.toString();
This must be null if the component configuration state is not FAILED_ACTIVATION.
Since
1.4
idback to summary
public long id

The id of the component configuration.

The id is a non-persistent, unique value assigned at runtime. The id is also available as the component.id component property. The value of this field is unspecified if the state of this component configuration is unsatisfied.

propertiesback to summary
public Map<String, Object> properties

The component properties for the component configuration.

See Also
ComponentContext#getProperties()
SATISFIEDback to summary
public static final int SATISFIED

The component configuration is satisfied.

Any services declared by the component description are registered.

satisfiedReferencesback to summary
public SatisfiedReferenceDTO[] satisfiedReferences

The satisfied references.

Each SatisfiedReferenceDTO in the array represents a satisfied reference of the component configuration. The array must be empty if the component configuration has no satisfied references.

serviceback to summary
public ServiceReferenceDTO service

The registered service of the component configuration.

This must be non-null if the component configuration is registered as a service. Otherwise it must be null.

Since
1.4
stateback to summary
public int state

The current state of the component configuration.

This is one of UNSATISFIED_CONFIGURATION, UNSATISFIED_REFERENCE, SATISFIED, ACTIVE, or FAILED_ACTIVATION.

UNSATISFIED_CONFIGURATIONback to summary
public static final int UNSATISFIED_CONFIGURATION

The component configuration is unsatisfied due to a missing required configuration.

UNSATISFIED_REFERENCEback to summary
public static final int UNSATISFIED_REFERENCE

The component configuration is unsatisfied due to an unsatisfied reference.

unsatisfiedReferencesback to summary
public UnsatisfiedReferenceDTO[] unsatisfiedReferences

The unsatisfied references.

Each UnsatisfiedReferenceDTO in the array represents an unsatisfied reference of the component configuration. The array must be empty if the component configuration has no unsatisfied references.

Constructor Detail

ComponentConfigurationDTOback to summary
public ComponentConfigurationDTO()