[jboss-remoting-commits] JBoss Remoting SVN: r5836 - remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/management.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed Mar 24 23:40:23 EDT 2010


Author: trustin
Date: 2010-03-24 23:40:22 -0400 (Wed, 24 Mar 2010)
New Revision: 5836

Removed:
   remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/management/ManagedCloseable.java
Modified:
   remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/management/ConnectionMXBean.java
Log:
ManagedCloseable is not necessary at the moment

Modified: remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/management/ConnectionMXBean.java
===================================================================
--- remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/management/ConnectionMXBean.java	2010-03-25 03:35:27 UTC (rev 5835)
+++ remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/management/ConnectionMXBean.java	2010-03-25 03:40:22 UTC (rev 5836)
@@ -21,7 +21,10 @@
  */
 package org.jboss.remoting3.management;
 
-public interface ConnectionMXBean extends ManagedCloseable {
+public interface ConnectionMXBean {
     Counters getRequestCounters();
     Counters getClientCounters();
+
+    void close();
+    void forceClose();
 }

Deleted: remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/management/ManagedCloseable.java
===================================================================
--- remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/management/ManagedCloseable.java	2010-03-25 03:35:27 UTC (rev 5835)
+++ remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/management/ManagedCloseable.java	2010-03-25 03:40:22 UTC (rev 5836)
@@ -1,27 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2010, 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.remoting3.management;
-
-public interface ManagedCloseable {
-    void close();
-    void forceClose();
-}



More information about the jboss-remoting-commits mailing list