[jboss-cvs] JBoss Messaging SVN: r3421 - in branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server: microcontainer and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Dec 6 05:05:12 EST 2007


Author: ataylor
Date: 2007-12-06 05:05:12 -0500 (Thu, 06 Dec 2007)
New Revision: 3421

Removed:
   branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/microcontainer/JMSTXAgent.java
   branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/microcontainer/factory/mBeanServerCreator.java
Modified:
   branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/destination/DestinationDeployer.java
   branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/microcontainer/factory/Connector.java
Log:
tidying up

Modified: branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/destination/DestinationDeployer.java
===================================================================
--- branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/destination/DestinationDeployer.java	2007-12-06 09:33:37 UTC (rev 3420)
+++ branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/destination/DestinationDeployer.java	2007-12-06 10:05:12 UTC (rev 3421)
@@ -43,7 +43,9 @@
 /**
  * Destination Deployer. This class will administrate the deployment, undeployment and registration of Queue's and Topics.
  * Some of these methods will be exposed via the ServerPeer
- *
+ * @author <a href="mailto:ovidiu at feodorov.com">Ovidiu Feodorov</a>
+ * @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a>
+ * @author <a href="mailto:alex.fu at novell.com">Alex Fu</a>
  * @author <a href="ataylor at redhat.com">Andy Taylor</a>
  */
 public class DestinationDeployer

Deleted: branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/microcontainer/JMSTXAgent.java
===================================================================
--- branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/microcontainer/JMSTXAgent.java	2007-12-06 09:33:37 UTC (rev 3420)
+++ branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/microcontainer/JMSTXAgent.java	2007-12-06 10:05:12 UTC (rev 3421)
@@ -1,39 +0,0 @@
-/*
-   * JBoss, Home of Professional Open Source
-   * Copyright 2005, JBoss Inc., and individual contributors as indicated
-   * by the @authors tag. See the copyright.txt 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.jms.server.microcontainer;
-
-import com.arjuna.ats.tsmx.agent.AgentInterface;
-import com.arjuna.ats.tsmx.agent.exceptions.AgentNotFoundException;
-
-import javax.management.MBeanServer;
-import javax.management.MBeanServerFactory;
-
-/**
- * @author <a href="ataylor at redhat.com">Andy Taylor</a>
- */
-public class JMSTXAgent implements AgentInterface
-{
-    public MBeanServer getAgent() throws AgentNotFoundException
-    {
-        return (MBeanServer) MBeanServerFactory.findMBeanServer("JBOSS").get(0);
-    }
-}

Modified: branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/microcontainer/factory/Connector.java
===================================================================
--- branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/microcontainer/factory/Connector.java	2007-12-06 09:33:37 UTC (rev 3420)
+++ branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/microcontainer/factory/Connector.java	2007-12-06 10:05:12 UTC (rev 3421)
@@ -35,37 +35,37 @@
 
     public Connector()
     {
-        super();    //To change body of overridden methods use File | Settings | File Templates.
+        super();
     }
 
     public Connector(String locatorURI)
     {
-        super(locatorURI);    //To change body of overridden methods use File | Settings | File Templates.
+        super(locatorURI);
     }
 
     public Connector(InvokerLocator locator)
     {
-        super(locator);    //To change body of overridden methods use File | Settings | File Templates.
+        super(locator);
     }
 
     public Connector(Map configuration)
     {
-        super(configuration);    //To change body of overridden methods use File | Settings | File Templates.
+        super(configuration);
     }
 
     public Connector(String locatorURI, Map configuration)
     {
-        super(locatorURI, configuration);    //To change body of overridden methods use File | Settings | File Templates.
+        super(locatorURI, configuration);
     }
 
     public Connector(InvokerLocator locator, Map configuration)
     {
-        super(locator, configuration);    //To change body of overridden methods use File | Settings | File Templates.
+        super(locator, configuration);
     }
 
     protected Connector(boolean isMarshallerConnector)
     {
-        super(isMarshallerConnector);    //To change body of overridden methods use File | Settings | File Templates.
+        super(isMarshallerConnector);    
     }
 
     public void setInvocationHandler(ServerInvocationHandler handler) throws Exception

Deleted: branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/microcontainer/factory/mBeanServerCreator.java
===================================================================
--- branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/microcontainer/factory/mBeanServerCreator.java	2007-12-06 09:33:37 UTC (rev 3420)
+++ branches/Branch_MC_Integration_New/src/main/org/jboss/jms/server/microcontainer/factory/mBeanServerCreator.java	2007-12-06 10:05:12 UTC (rev 3421)
@@ -1,36 +0,0 @@
-/*
-   * JBoss, Home of Professional Open Source
-   * Copyright 2005, JBoss Inc., and individual contributors as indicated
-   * by the @authors tag. See the copyright.txt 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.jms.server.microcontainer.factory;
-
-import javax.management.MBeanServer;
-import javax.management.MBeanServerFactory;
-
-/**
- * @author <a href="ataylor at redhat.com">Andy Taylor</a>
- */
-public class mBeanServerCreator
-{
-    public static MBeanServer createMBeanServer()
-    {                                               
-        return MBeanServerFactory.createMBeanServer("JBOSS");
-    }
-}




More information about the jboss-cvs-commits mailing list