Modifier and Type | Field 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
|
public long | id
The id of the component configuration. |
public Map | 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. |
Access | Constructor and Description |
---|---|
public |
ACTIVE | back to summary |
---|---|
public static final int ACTIVE The component configuration is active. This is the normal operational state of a component configuration. |
description | back to summary |
---|---|
public ComponentDescriptionDTO description The representation of the component configuration's component description. |
FAILED_ACTIVATION | back to summary |
---|---|
public static final int FAILED_ACTIVATION The component configuration failed to activate. This means the component configuration is satisfied but that either:
failure .
|
failure | back to summary |
---|---|
public String failure The failure information if the component configuration state is
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 .
|
id | back 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 |
properties | back to summary |
---|---|
public Map<String, Object> properties The component properties for the component configuration.
|
SATISFIED | back to summary |
---|---|
public static final int SATISFIED The component configuration is satisfied.
Any |
satisfiedReferences | back to summary |
---|---|
public SatisfiedReferenceDTO[] satisfiedReferences The satisfied references.
Each |
service | back to summary |
---|---|
public ServiceReferenceDTO service The registered service of the component configuration.
This must be non-
|
state | back to summary |
---|---|
public int state The current state of the component configuration.
This is one of |
UNSATISFIED_CONFIGURATION | back to summary |
---|---|
public static final int UNSATISFIED_CONFIGURATION The component configuration is unsatisfied due to a missing required configuration. |
UNSATISFIED_REFERENCE | back to summary |
---|---|
public static final int UNSATISFIED_REFERENCE The component configuration is unsatisfied due to an unsatisfied reference. |
unsatisfiedReferences | back to summary |
---|---|
public UnsatisfiedReferenceDTO[] unsatisfiedReferences The unsatisfied references.
Each |
ComponentConfigurationDTO | back to summary |
---|---|
public ComponentConfigurationDTO() |