(no commit message)
[utils] / system / general / src / test / java / org / wamblee / system / Application.java
index 6e9eb675c25861ae7d911109a7ec89c1c378039b..5bc6240151c410f0b0c9c07dc209d722291435a1 100644 (file)
@@ -1,7 +1,24 @@
+/*
+ * 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;
 
+import org.wamblee.test.EventTracker;
+
 public class Application extends AbstractComponent {
        private static RequiredInterface[] required() {
                return
@@ -10,18 +27,32 @@ public class Application extends AbstractComponent {
                        new DefaultRequiredInterface("integer", Integer.class)
        };
        }
+
+       private EventTracker<String> _tracker;
        
        public Application() {
                super("application", new ProvidedInterface[0], required()); 
        }
+       
+       public Application(EventTracker<String> aTracker) { 
+               this();
+               _tracker = aTracker; 
+       }
 
        @Override
        protected void doStart(String aContext) {
-               // Empty, no services provided externally. 
+               track("start." + getName()); 
        }
        
        @Override
        protected void doStop() {
-               // Empty.       
+               track("stop." + getName());     
+       }
+       
+       private void track(String aString) {
+               if ( _tracker == null ) { 
+                       return; 
+               }
+               _tracker.eventOccurred(aString);
        }
 }