X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=system%2Fgeneral%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fsystem%2FApplication.java;h=5bc6240151c410f0b0c9c07dc209d722291435a1;hb=6f8bb575523e672b9f8797e543f7c59d15db7253;hp=1a725b3c14d7c890f262f6027baf73b16d555f27;hpb=35b19fe3a3158e865125153d53cd7d106ab2fae4;p=utils diff --git a/system/general/src/test/java/org/wamblee/system/Application.java b/system/general/src/test/java/org/wamblee/system/Application.java index 1a725b3c..5bc62401 100644 --- a/system/general/src/test/java/org/wamblee/system/Application.java +++ b/system/general/src/test/java/org/wamblee/system/Application.java @@ -1,21 +1,58 @@ +/* + * Copyright 2007 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.wamblee.system; import javax.sql.DataSource; -public class Application extends AbstractSubSystem { - private static final ServiceDescriptor[] REQUIRED = - new ServiceDescriptor[] { - new DefaultServiceDescriptor(DataSource.class), - new DefaultServiceDescriptor(Integer.class) +import org.wamblee.test.EventTracker; + +public class Application extends AbstractComponent { + private static RequiredInterface[] required() { + return + new RequiredInterface[] { + new DefaultRequiredInterface("datasource", DataSource.class), + new DefaultRequiredInterface("integer", Integer.class) }; + } + + private EventTracker _tracker; public Application() { - super("application", new ServiceDescriptor[0], REQUIRED); + super("application", new ProvidedInterface[0], required()); + } + + public Application(EventTracker aTracker) { + this(); + _tracker = aTracker; } @Override - protected void doInitialize(String aContext, Service[] aRequiredServices) { - // Empty, no services provided externally. + protected void doStart(String aContext) { + track("start." + getName()); + } + + @Override + protected void doStop() { + track("stop." + getName()); + } + + private void track(String aString) { + if ( _tracker == null ) { + return; + } + _tracker.eventOccurred(aString); } - }