[jboss-cvs] JBossAS SVN: r79228 - in branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test: util and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Oct 7 11:58:12 EDT 2008


Author: clebert.suconic at jboss.com
Date: 2008-10-07 11:58:11 -0400 (Tue, 07 Oct 2008)
New Revision: 79228

Added:
   branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test/util/mbean/
   branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test/util/mbean/SimpleService.java
Removed:
   branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test/mbean/
   branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test/util/mbean/SimpleService.java
Log:
Fixing compilation error on eclipse

Copied: branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test/util/mbean (from rev 79224, branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test/mbean)


Property changes on: branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test/util/mbean
___________________________________________________________________
Name: svn:mergeinfo
   + 

Deleted: branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test/util/mbean/SimpleService.java
===================================================================
--- branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test/mbean/SimpleService.java	2008-10-07 15:19:33 UTC (rev 79224)
+++ branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test/util/mbean/SimpleService.java	2008-10-07 15:58:11 UTC (rev 79228)
@@ -1,55 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2008, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.test.util.mbean;
-
-import java.util.HashMap;
-
-/**
- * A simple mbean.
- * 
- * @author <a href="mailto:dimitris at jboss.org">Dimitris Andreadis</a>
- * @version $Revision: 57211 $
- */
-public class SimpleService implements SimpleServiceMBean
-{
-   private HashMap hm = new HashMap();
-   
-   public SimpleService()
-   {
-      hm.put("key1", "value1");
-   }
-   
-   public HashMap getHashMapAttr()
-   {
-      return hm;
-   }
-   
-   public void setHashMapAttr(HashMap hm)
-   {
-      this.hm = hm;
-   }
-   
-   public HashMap showHashMapAttr()
-   {
-      return hm;
-   }
-}
\ No newline at end of file

Copied: branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test/util/mbean/SimpleService.java (from rev 79227, branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test/mbean/SimpleService.java)
===================================================================
--- branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test/util/mbean/SimpleService.java	                        (rev 0)
+++ branches/JBPAPP_4_2_0_GA_CP/testsuite/src/main/org/jboss/test/util/mbean/SimpleService.java	2008-10-07 15:58:11 UTC (rev 79228)
@@ -0,0 +1,55 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.util.mbean;
+
+import java.util.HashMap;
+
+/**
+ * A simple mbean.
+ * 
+ * @author <a href="mailto:dimitris at jboss.org">Dimitris Andreadis</a>
+ * @version $Revision: 57211 $
+ */
+public class SimpleService implements SimpleServiceMBean
+{
+   private HashMap hm = new HashMap();
+   
+   public SimpleService()
+   {
+      hm.put("key1", "value1");
+   }
+   
+   public HashMap getHashMapAttr()
+   {
+      return hm;
+   }
+   
+   public void setHashMapAttr(HashMap hm)
+   {
+      this.hm = hm;
+   }
+   
+   public HashMap showHashMapAttr()
+   {
+      return hm;
+   }
+}
\ No newline at end of file




More information about the jboss-cvs-commits mailing list