
Public Member Functions | |
| String | getName () |
| String | getDescription () |
| String | toString () |
Static Public Attributes | |
| static final ComponentStatus | COMPONENT_ACTIVATED = new ComponentStatus("COMPONENT_ACTIVATED", "Component is activated.") |
| static final ComponentStatus | COMPONENT_DOES_NO_EXIST = new ComponentStatus("COMPONENT_DOES_NO_EXIST", "Component does not exists.") |
| static final ComponentStatus | COMPONENT_NOT_ACTIVATED = new ComponentStatus("COMPONENT_NOT_ACTIVATED", "Component is not activated.") |
Protected Member Functions | |
| ComponentStatus (String name, String description) | |
Private Attributes | |
| String | name |
| String | description |
Status of the Component object. Can be one of: COMPONENT_ACTIVATED, COMPONENT_DOES_NO_EXIST and COMPONENT_NOT_ACTIVATED.
| com::cosylab::acs::maci::ComponentStatus::ComponentStatus | ( | String | name, | |
| String | description | |||
| ) | [inline, protected] |
Creates a new status with its name and description. Contructor is protected to deny creation of unsupported statuses
| name | name of the status, non-null | |
| description | description of the status, non-null |
| String com::cosylab::acs::maci::ComponentStatus::getDescription | ( | ) | [inline] |
Returns the description of the status.
References description.
| String com::cosylab::acs::maci::ComponentStatus::getName | ( | ) | [inline] |
| String com::cosylab::acs::maci::ComponentStatus::toString | ( | ) | [inline] |
Returns a single-line rendition of this instance into text.
References description, and name.
final ComponentStatus com::cosylab::acs::maci::ComponentStatus::COMPONENT_ACTIVATED = new ComponentStatus("COMPONENT_ACTIVATED", "Component is activated.") [static] |
Status of activated Component.
Referenced by com::cosylab::acs::maci::test::TestHierarchicalComponent::activateSubComponents(), com::cosylab::acs::maci::manager::ManagerImpl::autoStartComponents(), com::cosylab::acs::maci::manager::ManagerImpl::containerPostLoginActivation(), com::cosylab::acs::maci::manager::ManagerImpl::internalNoSyncRequestComponent(), com::cosylab::acs::maci::manager::ManagerImpl::internalRequestDefaultComponent(), and com::cosylab::acs::maci::manager::ManagerImpl::RequestComponentTask::run().
final ComponentStatus com::cosylab::acs::maci::ComponentStatus::COMPONENT_DOES_NO_EXIST = new ComponentStatus("COMPONENT_DOES_NO_EXIST", "Component does not exists.") [static] |
Status of non-existant Component.
Referenced by com::cosylab::acs::maci::plug::ManagerProxyImpl::get_component().
final ComponentStatus com::cosylab::acs::maci::ComponentStatus::COMPONENT_NOT_ACTIVATED = new ComponentStatus("COMPONENT_NOT_ACTIVATED", "Component is not activated.") [static] |
Status of non-activated Component.
Referenced by com::cosylab::acs::maci::plug::ManagerProxyImpl::get_component().
String com::cosylab::acs::maci::ComponentStatus::description [private] |
The description of the status.
Referenced by getDescription(), and toString().
String com::cosylab::acs::maci::ComponentStatus::name [private] |
The name of the status (e.g. COMPONENT_ACTIVATED).
Referenced by getName(), and toString().
1.6.2