Author: alessio.soldano(a)jboss.com
Date: 2012-02-13 11:30:45 -0500 (Mon, 13 Feb 2012)
New Revision: 15632
Removed:
common/trunk/src/main/java/org/jboss/ws/common/management/MBeanServerLocator.java
Log:
Removing MBeanServerLocator (AS5/6 abstraction)
Deleted:
common/trunk/src/main/java/org/jboss/ws/common/management/MBeanServerLocator.java
===================================================================
---
common/trunk/src/main/java/org/jboss/ws/common/management/MBeanServerLocator.java 2012-02-13
16:29:37 UTC (rev 15631)
+++
common/trunk/src/main/java/org/jboss/ws/common/management/MBeanServerLocator.java 2012-02-13
16:30:45 UTC (rev 15632)
@@ -1,48 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, 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.ws.common.management;
-
-import javax.management.MBeanServer;
-
-/**
- * Locate the single instance of the MBeanServer
- *
- * @author Thomas.Diesler(a)jboss.org
- */
-public final class MBeanServerLocator
-{
-
- private final MBeanServer mbeanServer;
-
- public MBeanServerLocator(final MBeanServer mbeanServer)
- {
- super();
-
- this.mbeanServer = mbeanServer;
- }
-
- public MBeanServer getMbeanServer()
- {
- return mbeanServer;
- }
-
-}