added spring subsystem implementation.
[utils] / system / general / src / test / java / org / wamblee / system / Application.java
index 3587917b93e98653d2bd95294e770c505477896d..d5a3590db2775b0479a4ac857323e3492e7a66d0 100644 (file)
@@ -9,17 +9,17 @@ public class Application extends AbstractSubSystem {
                        new DefaultServiceDescriptor(Integer.class)
        };
        
-       public Application() {
-               super("application", new ServiceDescriptor[0], REQUIRED); 
+       public Application(ServiceRegistry aRegistry) {
+               super("application", aRegistry, new ServiceDescriptor[0], REQUIRED); 
        }
 
        @Override
-       protected void doStart(String aContext, ServiceRegistry aRegistry, Service[] aRequiredServices) {
+       protected void doStart(String aContext, Service[] aRequiredServices) {
                // Empty, no services provided externally. 
        }
        
        @Override
-       protected void doStop(String aContext) {
+       protected void doStop() {
                // Empty.       
        }
 }