[jboss-cvs] JBossAS SVN: r79425 - trunk/cluster/src/etc.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Oct 13 18:31:01 EDT 2008


Author: bstansberry at jboss.com
Date: 2008-10-13 18:31:01 -0400 (Mon, 13 Oct 2008)
New Revision: 79425

Removed:
   trunk/cluster/src/etc/farm-jboss-beans.xml
   trunk/cluster/src/etc/farm-service.xml
Log:
Remove unused farm service configs

Deleted: trunk/cluster/src/etc/farm-jboss-beans.xml
===================================================================
--- trunk/cluster/src/etc/farm-jboss-beans.xml	2008-10-13 22:19:51 UTC (rev 79424)
+++ trunk/cluster/src/etc/farm-jboss-beans.xml	2008-10-13 22:31:01 UTC (rev 79425)
@@ -1,64 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
-   
-   <bean name="FarmMemberService"
-   		 class="org.jboss.ha.framework.server.FarmMemberService">
-   	
-   	<annotation>@org.jboss.aop.microcontainer.aspects.jmx.JMX(name="jboss:service=FarmMember,partitionName=${jboss.partition.name:DefaultPartition}", exposedInterface=org.jboss.ha.framework.server.FarmMemberServiceMBean.class, registerDirectly=true)</annotation>	 
-   	
-   	<depends>HAPartition</depends>
-   	   
-   	<property name="HAPartition"><inject bean="HAPartition"/></property>
-       <property name="deployer">jboss.system:service=MainDeployer</property>
-   	   
-   	<!-- The URLComparator can be used to specify a deployment ordering
-         for deployments found in a scanned directory.  The class specified
-         must be an implementation of java.util.Comparator, it must be able
-         to compare two URL objects, and it must have a no-arg constructor.
-         Two deployment comparators are shipped with JBoss:
-           - org.jboss.deployment.DeploymentSorter 
-             Sorts by file extension, as follows:
-               "sar", "service.xml", "rar", "jar", "war", "wsr", "ear", "zip", 
-               "*"
-           - org.jboss.deployment.scanner.PrefixDeploymentSorter
-             If the name portion of the url begins with 1 or more digits, those 
-             digits are converted to an int (ignoring leading zeroes), and 
-             files are deployed in that order.  Files that do not start with 
-             any digits will be deployed last, and they will be sorted by
-             extension as above with DeploymentSorter.
-    -->
-    <property name="URLComparator">org.jboss.deployment.DeploymentSorter</property>
-    <!--
-    <property name="URLComparator">org.jboss.deployment.scanner.PrefixDeploymentSorter</property>
-    -->
-    
-    <!-- The Filter specifies a java.io.FileFilter for scanned
-         directories.  Any file not accepted by this filter will not be
-         deployed.  The org.jboss.deployment.scanner.DeploymentFilter 
-         rejects the following patterns:
-             "#*", "%*", ",*", ".*", "_$*", "*#", "*$", "*%", "*.BAK", 
-             "*.old", "*.orig", "*.rej", "*.bak", "*,v", "*~", ".make.state", 
-             ".nse_depinfo", "CVS", "CVS.admin", "RCS", "RCSLOG", "SCCS", 
-             "TAGS", "core", "tags"
-    -->
-    <property name="filter">org.jboss.deployment.scanner.DeploymentFilter</property>
-
-    <property name="scanPeriod">5000</property>
-    
-   	<!-- URLs are comma seperated and unprefixed arguments are considered
-       file URLs and resolve relative to server home(JBOSS_DIST/server/default)
-       unless the given path is absolute. Any referenced directories cannot
-       be unpackaged archives, use the parent directory of the unpacked
-       archive.
-     -->
-      <property name="URLList">
-         <list elementClass="java.net.URL">
-            <!-- Directory for deployers -->
-            <value>${jboss.server.home.url}farm/</value>
-         </list>
-      </property>
-     
-   </bean>
-   
-</deployment>

Deleted: trunk/cluster/src/etc/farm-service.xml
===================================================================
--- trunk/cluster/src/etc/farm-service.xml	2008-10-13 22:19:51 UTC (rev 79424)
+++ trunk/cluster/src/etc/farm-service.xml	2008-10-13 22:31:01 UTC (rev 79425)
@@ -1,71 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!-- ===================================================================== -->
-<!--                                                                       -->
-<!--  Sample Farming Service Configuration                                   -->
-<!--                                                                       -->
-<!-- ===================================================================== -->
-
-<server>
-   
-   <mbean code="org.jboss.ha.framework.server.FarmMemberService" name="jboss:service=FarmMember,partition=DefaultPartition" >    
-      
-    <depends optional-attribute-name="HAPartition"
-       proxy-type="attribute">jboss:service=${jboss.partition.name:DefaultPartition}</depends>
-   	
-   	<!-- TODO Why was this here?
-    <depends>jboss.web:service=WebServer</depends>           
-	-->
-	
-    <!-- Uncomment (and comment/remove version below) to enable usage of the
-      DeploymentCache
-    <depends optional-attribute-name="Deployer">jboss.deployment:type=DeploymentCache</depends>
-    -->
-    <depends optional-attribute-name="Deployer">jboss.system:service=MainDeployer</depends>
-
-    <!-- The URLComparator can be used to specify a deployment ordering
-         for deployments found in a scanned directory.  The class specified
-         must be an implementation of java.util.Comparator, it must be able
-         to compare two URL objects, and it must have a no-arg constructor.
-         Two deployment comparators are shipped with JBoss:
-           - org.jboss.deployment.DeploymentSorter 
-             Sorts by file extension, as follows:
-               "sar", "service.xml", "rar", "jar", "war", "wsr", "ear", "zip", 
-               "*"
-           - org.jboss.deployment.scanner.PrefixDeploymentSorter
-             If the name portion of the url begins with 1 or more digits, those 
-             digits are converted to an int (ignoring leading zeroes), and 
-             files are deployed in that order.  Files that do not start with 
-             any digits will be deployed last, and they will be sorted by
-             extension as above with DeploymentSorter.
-    -->
-    <attribute name="URLComparator">org.jboss.deployment.DeploymentSorter</attribute>
-    <!--
-    <attribute name="URLComparator">org.jboss.deployment.scanner.PrefixDeploymentSorter</attribute>
-    -->
-
-    <!-- The Filter specifies a java.io.FileFilter for scanned
-         directories.  Any file not accepted by this filter will not be
-         deployed.  The org.jboss.deployment.scanner.DeploymentFilter 
-         rejects the following patterns:
-             "#*", "%*", ",*", ".*", "_$*", "*#", "*$", "*%", "*.BAK", 
-             "*.old", "*.orig", "*.rej", "*.bak", "*,v", "*~", ".make.state", 
-             ".nse_depinfo", "CVS", "CVS.admin", "RCS", "RCSLOG", "SCCS", 
-             "TAGS", "core", "tags"
-    -->
-    <attribute name="Filter">org.jboss.deployment.scanner.DeploymentFilter</attribute>
-
-    <attribute name="ScanPeriod">5000</attribute>
-
-    <!-- URLs are comma seperated and unprefixed arguments are considered
-       file URLs and resolve relative to server home(JBOSS_DIST/server/default)
-       unless the given path is absolute. Any referenced directories cannot
-       be unpackaged archives, use the parent directory of the unpacked
-       archive.
-     -->
-    <attribute name="URLs">
-       farm/
-    </attribute>
-   </mbean>
-   
-</server>




More information about the jboss-cvs-commits mailing list