[jboss-cvs] JBossAS SVN: r58575 - trunk/cluster/src/main/org/jboss/ha/framework/server

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Nov 18 06:35:02 EST 2006


Author: bstansberry at jboss.com
Date: 2006-11-18 06:35:02 -0500 (Sat, 18 Nov 2006)
New Revision: 58575

Modified:
   trunk/cluster/src/main/org/jboss/ha/framework/server/FarmMemberServiceMBean.java
Log:
Don't extend URLDeploymentScanner

Modified: trunk/cluster/src/main/org/jboss/ha/framework/server/FarmMemberServiceMBean.java
===================================================================
--- trunk/cluster/src/main/org/jboss/ha/framework/server/FarmMemberServiceMBean.java	2006-11-18 11:34:10 UTC (rev 58574)
+++ trunk/cluster/src/main/org/jboss/ha/framework/server/FarmMemberServiceMBean.java	2006-11-18 11:35:02 UTC (rev 58575)
@@ -39,7 +39,6 @@
  * </ul>
  */
 public interface FarmMemberServiceMBean 
-   extends URLDeploymentScannerMBean
 {
    /** The default object name. */
    ObjectName OBJECT_NAME = ObjectNameFactory.create("jboss:service=FarmMember");
@@ -52,13 +51,11 @@
     * @deprecate use {@link #getClusterPartition()}
     */
    String getPartitionName();
+   
    /**
-    * Sets the name of the HAPartition used by this service.
-    * Can be set only when the MBean is not in a STARTED or STARTING state.
+    * Backward compatibility, but ignored as it does nothing.
     * 
-    * @param name the name of the partition
-    * 
-    * @deprecate use {@link #setClusterPartition()}
+    * @deprecated use {@link #setClusterPartition()}
     */
    void setPartitionName(String name);
    
@@ -76,14 +73,4 @@
     * @param clusterPartition the partition
     */
    void setClusterPartition(ClusterPartitionMBean clusterPartition);
-
-   /** Backward compatibility, mapped to the URLs attribute of URLDeploymentScannerMBean
-    * @deprecated
-    */
-   public void setFarmDeployDirectory(String urls)
-      throws MalformedURLException;
-   /** Backward compatibility, but ignored as it does nothing.
-    * @deprecated
-    */
-   public void setScannerName(String name);
 }




More information about the jboss-cvs-commits mailing list