(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / core / Component.java
index 9409e44f6b0cb9a1c2eef2d95cc6ce9ebd3c5e3b..ff80ee693acdcba8f70443cf4bb704ba4821a2d5 100644 (file)
@@ -23,16 +23,6 @@ package org.wamblee.system.core;
  */
 public interface Component {
        
-       enum Status { 
-               NOT_STARTED, RUNNING, STOPPED
-       }
-       
-       /**
-        * Gets the status of the component. 
-        * @return Status. 
-        */
-       Status getStatus();
-       
        /**
         * Gets the name of the subsystem.
         * @return Subsystem name. 
@@ -78,7 +68,7 @@ public interface Component {
         * {@link #initialize(String, Service[])} has been called. 
         * @return
         */
-       ProvidedInterface[] getRunningServices();
+       ProvidedInterface[] getRunningInterfaces();
        
        /**
         * Stops a subsystem.