Package rename org.wamblee.system to org.wamblee.system.core
[utils] / system / general / src / main / java / org / wamblee / system / core / Component.java
1 /*
2  * Copyright 2007 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */ 
16 package org.wamblee.system.core;
17
18 /**
19  * A component represents a part of a system that requires a 
20  * number of interfaces and provides a number of interfaces. 
21  *
22  * @author Erik Brakkee
23  */
24 public interface Component {
25         
26         enum Status { 
27                 NOT_STARTED, RUNNING, STOPPED
28         }
29         
30         /**
31          * Gets the status of the component. 
32          * @return Status. 
33          */
34         Status getStatus();
35         
36         /**
37          * Gets the name of the subsystem.
38          * @return Subsystem name. 
39          */
40         String getName();
41         
42         /**
43          * Prepends the context with a super context. 
44          */
45         void addContext(String aContext);
46         
47         /**
48          * Gets the fully qualified name of the component which includes
49          * the context of the component.  
50          * This method can only be used after the component has started.
51          * @return Qualified name. 
52          */
53         String getQualifiedName(); 
54
55         /**
56          * Gets a description of the provided interfaces. 
57          * @return Provided interfaces. 
58          */
59         ProvidedInterface[] getProvidedServices();
60         
61         /**
62          * Gets a description of the required interfaces. 
63          * @return Required interfaces. 
64          */
65         RequiredInterface[] getRequiredServices();
66
67         
68         /**
69          * Initialises the subsytem by starting all the services that
70          * it described as provided. 
71          */
72         void start();
73         
74         /**
75          * Stops a subsystem. 
76          */
77         void stop(); 
78         
79         /**
80          * Gets the list of running services in the subsystem. 
81          * 
82          * This method may only be called after the
83          * {@link #initialize(String, Service[])} has been called. 
84          * @return
85          */
86         ProvidedInterface[] getRunningServices();
87 }