[maven-release-plugin] copy for tag wamblee-utils-0.2.2
[utils] / system / spring / src / test / java / org / wamblee / system / spring / HelloService.java
index d3b5b121f168748c995270b77ee0a49dd6defaf2..c3e623ce0792afadf16a95e3c96f5841daab022e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2007 the original author or authors.
+ * Copyright 2005-2010 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.
  */ 
 package org.wamblee.system.spring;
 
+/**
+ * 
+ * @author $author$
+ * @version $Revision$
+ */
 public class HelloService {
-       
-       private String msg; 
-       
-       public HelloService(String aMsg) {
-          SpringComponentTest.EVENT_TRACKER.eventOccurred(aMsg);
-               msg = aMsg; 
-       }
-       
-       public String say() { 
-               return msg; 
-       }
+    private String msg;
+
+    /**
+     * Creates a new HelloService object.
+     * 
+     */
+    public HelloService(String aMsg) {
+        SpringComponentTest.getEventTracker().eventOccurred(aMsg);
+        msg = aMsg;
+    }
+
+    public String say() {
+        return msg;
+    }
 }