EMBJOPR SVN: r872 - branches/EmbJopr-1.4.0-SN-EAP5/core.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2010-01-25 14:20:50 -0500 (Mon, 25 Jan 2010)
New Revision: 872
Modified:
branches/EmbJopr-1.4.0-SN-EAP5/core/pom.xml
Log:
POM: Maven compiler plugin: Java sources version and target class set to 1.6 .
Modified: branches/EmbJopr-1.4.0-SN-EAP5/core/pom.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/core/pom.xml 2010-01-25 16:50:28 UTC (rev 871)
+++ branches/EmbJopr-1.4.0-SN-EAP5/core/pom.xml 2010-01-25 19:20:50 UTC (rev 872)
@@ -320,6 +320,16 @@
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ </configuration>
+ </plugin>
+
</plugins>
</build>
14 years, 11 months
EMBJOPR SVN: r871 - branches/EmbJopr-1.4.0-SN-EAP5/jsfunit.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2010-01-25 11:50:28 -0500 (Mon, 25 Jan 2010)
New Revision: 871
Modified:
branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/pom.xml
Log:
POM: Maven compiler plugin: Java sources version and target class set to 1.6 .
Modified: branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/pom.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/pom.xml 2010-01-25 13:07:36 UTC (rev 870)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/pom.xml 2010-01-25 16:50:28 UTC (rev 871)
@@ -1045,9 +1045,18 @@
</execution>
</executions>
</plugin>
-
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>
+
14 years, 11 months
EMBJOPR SVN: r870 - in branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit: as5 and 3 other directories.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2010-01-25 08:07:36 -0500 (Mon, 25 Jan 2010)
New Revision: 870
Modified:
branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/EjtsSelfTest.java
branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/EmbJoprTestConstants.java
branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/NamedLabels.java
branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/JBossASNodeTest.java
branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/app/ear/EarTest.java
branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/app/rar/RarTest.java
branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/app/war/WarTest.java
Log:
Tests now use dynamic labels.
Modified: branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/EjtsSelfTest.java
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/EjtsSelfTest.java 2010-01-21 18:04:00 UTC (rev 869)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/EjtsSelfTest.java 2010-01-25 13:07:36 UTC (rev 870)
@@ -2,15 +2,12 @@
package org.jboss.jopr.jsfunit;
import java.io.BufferedReader;
-import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
-import java.net.URL;
import java.util.Map.Entry;
import java.util.jar.Attributes;
import java.util.jar.Manifest;
-import java.util.logging.Level;
import org.apache.cactus.ServletTestCase;
import org.jboss.jopr.jsfunit.exceptions.EmbJoprTestException;
import org.jboss.jopr.jsfunit.util.EjtsEnvironmentInfo;
Modified: branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/EmbJoprTestConstants.java
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/EmbJoprTestConstants.java 2010-01-21 18:04:00 UTC (rev 869)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/EmbJoprTestConstants.java 2010-01-25 13:07:36 UTC (rev 870)
@@ -17,9 +17,10 @@
public static String SYSPROP_CARGO_JBOSS_HOME_DIR = "jsfunit.jboss.home.dir";
- public static final String AS_NODE_NAME_FORMAT = "JBoss AS 6 (%s)";
+ // Moved to NamedLabels => ejtt.labels.*
+ //public static final String AS_NODE_NAME_FORMAT = "JBoss AS 6 (%s)";
//public static final String AS_NODE_NAME_FORMAT = "JBoss EAP 5 (%s)";
- public static final String AS_NODE_DESCRIPTION = "JBoss Application Server";
+ //public static final String AS_NODE_DESCRIPTION = "JBoss Application Server";
//public static final String AS_NODE_DESCRIPTION = "JBoss Enterprise Application Platform (EAP)";
public static final String LABEL_AS_SERVERS_SUMMARY = "JBoss Application Server";
Modified: branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/NamedLabels.java
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/NamedLabels.java 2010-01-21 18:04:00 UTC (rev 869)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/NamedLabels.java 2010-01-25 13:07:36 UTC (rev 870)
@@ -30,6 +30,9 @@
public Labels getLabels() { return labels; }
private Labels labels;
+ public final String AS_NODE_NAME_FORMAT;
+ public final String AS_NODE_DESCRIPTION;
+
public final String NAV_APPLICATIONS;
public final String NAV_EJB2;
public final String NAV_EJB3;
@@ -45,6 +48,7 @@
public final String NAV_HBN;
+
// Const
/** Creates a Labels object and loads few strings to the named constants. */
@@ -55,6 +59,9 @@
log.error(ex);
}
+ AS_NODE_NAME_FORMAT = this.getLabels().get("AS_NODE_NAME_FORMAT");
+ AS_NODE_DESCRIPTION = this.getLabels().get("AS_NODE_DESCRIPTION");
+
NAV_APPLICATIONS = this.getLabels().get("NAV_APPLICATIONS");
NAV_EJB2 = this.getLabels().get("NAV_EJB2");
NAV_EJB3 = this.getLabels().get("NAV_EJB3");
@@ -69,7 +76,7 @@
NAV_JBCACHE = this.getLabels().get("NAV_JBCACHE");
NAV_HBN = this.getLabels().get("NAV_HBN");
- }
+ }// const
Modified: branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/JBossASNodeTest.java
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/JBossASNodeTest.java 2010-01-21 18:04:00 UTC (rev 869)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/JBossASNodeTest.java 2010-01-25 13:07:36 UTC (rev 870)
@@ -13,6 +13,7 @@
import org.jboss.jopr.jsfunit.AppConstants;
import org.jboss.jopr.jsfunit.EmbjoprTestCase;
import org.jboss.jopr.jsfunit.JMXUtils;
+import org.jboss.jopr.jsfunit.NamedLabels;
import org.jboss.jopr.jsfunit.exceptions.EmbJoprTestException;
import org.jboss.jopr.jsfunit.util.EmbJoprTestToolkit.ContentInfoTable;
import org.jboss.jopr.jsfunit.util.EmbJoprTestToolkit.ContentTable;
@@ -28,7 +29,7 @@
String jbossConfig = ejtt.getJBossConfig();
// Go to the AS node.
- String nodeText = String.format(AS_NODE_NAME_FORMAT, jbossConfig);
+ String nodeText = String.format( ejtt.labels.AS_NODE_NAME_FORMAT, jbossConfig);
ejtt.getNavTree().getNodeByLabel(nodeText, true).click();
@@ -36,7 +37,7 @@
String pageText = client.getPageAsText();
// Whole page contains
- String pageHeaderText = String.format(AS_NODE_NAME_FORMAT, jbossConfig);
+ String pageHeaderText = String.format( ejtt.labels.AS_NODE_NAME_FORMAT, jbossConfig);
//assertTrue("Page doesn't contain the header: "+headerText, pageText.contains(headerText));
if( ! client.getElement("content").getTextContent().contains(pageHeaderText) )
throw new EmbJoprTestException("Content doesn't contain the header: "+pageHeaderText, this);
@@ -69,7 +70,7 @@
assertTrue(LABEL_GENERAL_PROPERTIES+" / Version startsWith('"+versionPrefix+"')",
properties.getProperty("Version","~not found~").startsWith(versionPrefix) );
- assertEquals(LABEL_GENERAL_PROPERTIES+" / Description", AS_NODE_DESCRIPTION, properties.get("Description") );
+ assertEquals(LABEL_GENERAL_PROPERTIES+" / Description", ejtt.labels.AS_NODE_DESCRIPTION, properties.get("Description") );
/*
Modified: branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/app/ear/EarTest.java
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/app/ear/EarTest.java 2010-01-21 18:04:00 UTC (rev 869)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/app/ear/EarTest.java 2010-01-25 13:07:36 UTC (rev 870)
@@ -282,7 +282,7 @@
// Check whether the server is listed. If not, Exception is thrown.
ContentTableRow row =
ejtt.getTabMenu().getTabContentBox().getTableUnderHeader("JBoss Application Server")
- .getFirstRowContainingLink( String.format(AS_NODE_NAME_FORMAT, ejtt.getJBossConfig() ) );
+ .getFirstRowContainingLink( String.format( ejtt.labels.AS_NODE_NAME_FORMAT, ejtt.getJBossConfig() ) );
// Click the server link
//HtmlAnchor link row.getLinkByLabel("JBAS (default)");
Node firstLink = row.getCellByColumnName("Name").getElementsByTagName("a").item(0);
@@ -296,7 +296,7 @@
{
String pageText = client.getPageAsText();
- String headerText = String.format(AS_NODE_NAME_FORMAT, ejtt.getJBossConfig() );
+ String headerText = String.format( ejtt.labels.AS_NODE_NAME_FORMAT, ejtt.getJBossConfig() );
assertTrue("Page doesn't contain the header: "+headerText,
pageText.contains(headerText));
Modified: branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/app/rar/RarTest.java
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/app/rar/RarTest.java 2010-01-21 18:04:00 UTC (rev 869)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/app/rar/RarTest.java 2010-01-25 13:07:36 UTC (rev 870)
@@ -147,7 +147,7 @@
// Check whether the server is listed. If not, Exception is thrown.
ContentTableRow row =
ejtt.getTabMenu().getTabContentBox().getTableUnderHeader("JBoss Application Server")
- .getFirstRowContainingLink( String.format(AS_NODE_NAME_FORMAT, jbossConfig) );
+ .getFirstRowContainingLink( String.format( ejtt.labels.AS_NODE_NAME_FORMAT, jbossConfig) );
// Click the server link
//HtmlAnchor link row.getLinkByLabel("JBAS (default)");
Node firstLink = row.getCellByColumnName("Name").getElementsByTagName("a").item(0);
@@ -162,7 +162,7 @@
String pageText = client.getPageAsText();
String jbossConfig = ejtt.getJBossConfig();
- String headerText = String.format(AS_NODE_NAME_FORMAT, jbossConfig);
+ String headerText = String.format( ejtt.labels.AS_NODE_NAME_FORMAT, jbossConfig);
assertTrue("Page doesn't contain the header: "+headerText,
pageText.contains(headerText));
Modified: branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/app/war/WarTest.java
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/app/war/WarTest.java 2010-01-21 18:04:00 UTC (rev 869)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/app/war/WarTest.java 2010-01-25 13:07:36 UTC (rev 870)
@@ -299,10 +299,12 @@
assertTrue("EmbJopr should list at least one server (the one it is running on)" +
" and that should be in the UP sate.",
client.getPageAsText().contains("UP"));
+
// Check whether the server is listed. If not, Exception is thrown.
ContentTableRow row =
ejtt.getTabMenu().getTabContentBox().getTableUnderHeader(LABEL_AS_SERVERS_SUMMARY)
- .getFirstRowContainingLink( String.format(AS_NODE_NAME_FORMAT, jbossConfig)); // "JBoss EAP 5 (...)");
+ .getFirstRowContainingLink( String.format( NamedLabels.getInstance().AS_NODE_NAME_FORMAT, jbossConfig)); // "JBoss EAP 5 (...)");
+
// Click the server link
//HtmlAnchor link row.getLinkByLabel("JBoss App Server:default");
Node firstLink = row.getCellByColumnName("Name").getElementsByTagName("a").item(0);
@@ -317,7 +319,7 @@
String pageText = client.getPageAsText();
String jbossConfig = ejtt.getJBossConfig();
- String headerText = String.format(AS_NODE_NAME_FORMAT, jbossConfig);
+ String headerText = String.format( NamedLabels.getInstance().AS_NODE_NAME_FORMAT, jbossConfig);
assertTrue("Page doesn't contain the header: "+headerText,
pageText.contains(headerText));
14 years, 11 months
EMBJOPR SVN: r869 - branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/testdata.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2010-01-21 13:04:00 -0500 (Thu, 21 Jan 2010)
New Revision: 869
Modified:
branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/testdata/hudson_shell_script.sh
Log:
Hudson script updated.
Modified: branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/testdata/hudson_shell_script.sh
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/testdata/hudson_shell_script.sh 2010-01-19 20:49:53 UTC (rev 868)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/testdata/hudson_shell_script.sh 2010-01-21 18:04:00 UTC (rev 869)
@@ -96,7 +96,7 @@
## Disable the jsfunit module.
#rm pom.xml
- #svn up pom.xml
+ svn up pom.xml
#sed -i 's#<module>jsfunit</module>##g' pom.xml # Linux only
sed "s#<module>jsfunit</module>##g" pom.xml > pom_tmp.xml && mv -f pom_tmp.xml pom.xml
14 years, 12 months
EMBJOPR SVN: r868 - trunk.
by embjopr-commits@lists.jboss.org
Author: smcgowan(a)redhat.com
Date: 2010-01-19 15:49:53 -0500 (Tue, 19 Jan 2010)
New Revision: 868
Modified:
trunk/pom.xml
Log:
revert typo and change jopr-embedded-parent version back to 1.4.0-SNAPSHOT not B01
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-01-19 19:15:48 UTC (rev 867)
+++ trunk/pom.xml 2010-01-19 20:49:53 UTC (rev 868)
@@ -30,7 +30,7 @@
<groupId>org.jboss.jopr</groupId>
<artifactId>jopr-embedded-parent</artifactId>
- <version>1.4.0.B01</version>
+ <version>1.4.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Embedded Jopr</name>
<description>a web application that provides administration and monitoring of the app server instance to which it is deployed</description>
14 years, 12 months
EMBJOPR SVN: r867 - in trunk: core and 1 other directory.
by embjopr-commits@lists.jboss.org
Author: smcgowan(a)redhat.com
Date: 2010-01-19 14:15:48 -0500 (Tue, 19 Jan 2010)
New Revision: 867
Modified:
trunk/core/pom.xml
trunk/pom.xml
Log:
updating artifact versions in preparation for deployment to JBoss AS 6
Modified: trunk/core/pom.xml
===================================================================
--- trunk/core/pom.xml 2010-01-18 16:22:50 UTC (rev 866)
+++ trunk/core/pom.xml 2010-01-19 19:15:48 UTC (rev 867)
@@ -105,14 +105,13 @@
<groupId>${seam.groupId}</groupId>
<artifactId>jboss-seam-ui</artifactId>
<version>${seam.version}</version>
- <!-- EMBJOPR-269
+ <!-- EMBJOPR-269 -->
<exclusions>
<exclusion>
<groupId>${seam.groupId}</groupId>
<artifactId>jboss-seam-jul</artifactId>
</exclusion>
</exclusions>
- -->
</dependency>
<!-- third party dependencies needed when running tests with Seam -->
<dependency>
@@ -132,7 +131,7 @@
<dependency>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
- <version>3.5.0.GA</version>
+ <version>3.11.0.GA</version>
<scope>test</scope>
</dependency>
<!--
@@ -143,15 +142,15 @@
IIRC this is fixed in jdk6. -->
<dependency>
- <groupId>javax.persistence</groupId>
- <artifactId>persistence-api</artifactId>
- <version>1.0</version>
+ <groupId>org.hibernate.java-persistence</groupId>
+ <artifactId>jpa-api</artifactId>
+ <version>2.0-cr-1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
- <version>3.3.0.ga</version>
+ <version>3.5.0-Beta-2</version>
<scope>provided</scope>
</dependency>
<!-- don't know why this is required if you dont have it you get:
@@ -159,9 +158,16 @@
facesMessages.add(new FacesMessage(FacesMessage.SEVERITY_ERROR, errorMessage, null));
-->
<dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-validator-legacy</artifactId>
+ <version>4.0.2.GA</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
- <version>3.0.0.ga</version>
+ <version>4.0.2.GA</version>
<scope>provided</scope>
<!-- (not required at runtime) -->
</dependency>
@@ -184,7 +190,7 @@
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-api</artifactId>
- <version>2.0.1-FCS</version>
+ <version>2.0.2-FCS</version>
<scope>provided</scope>
</dependency>
@@ -192,7 +198,7 @@
<dependency>
<groupId>jboss.web</groupId>
<artifactId>el-api</artifactId>
- <version>2.1.5.GA</version>
+ <version>${jboss.web.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
@@ -227,31 +233,31 @@
<!-- == 3rd Party Provided Dependencies ================ -->
<dependency>
- <groupId>javax.servlet</groupId>
+ <groupId>jboss.web</groupId>
<artifactId>servlet-api</artifactId>
- <version>2.4</version>
+ <version>3.0.0-beta-1</version>
<scope>provided</scope>
<!-- by JBossAS -->
</dependency>
<dependency>
<groupId>jboss.web</groupId>
<artifactId>jsp-api</artifactId>
- <version>2.1.5.GA</version>
+ <version>3.0.0-beta-1</version>
<scope>provided</scope>
<!-- by JBossAS -->
</dependency>
<!-- Provided in 5.0 -->
<dependency>
- <groupId>javax.xml.bind</groupId>
+ <groupId>sun-jaxb</groupId>
<artifactId>jaxb-api</artifactId>
- <version>${jaxb-api.version}</version>
+ <version>${jaxb.version}</version>
<scope>provided</scope>
</dependency>
<!-- Provided in 5.0 -->
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
- <version>${jaxb-impl.version}</version>
+ <version>${jaxb.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-01-18 16:22:50 UTC (rev 866)
+++ trunk/pom.xml 2010-01-19 19:15:48 UTC (rev 867)
@@ -25,12 +25,12 @@
<parent>
<groupId>org.rhq</groupId>
<artifactId>rhq-parent</artifactId>
- <version>1.4.0-SNAPSHOT</version>
+ <version>1.4.0.B01</version>
</parent>
<groupId>org.jboss.jopr</groupId>
<artifactId>jopr-embedded-parent</artifactId>
- <version>1.4.0-SNAPSHOT</version>
+ <version>1.4.0.B01</version>
<packaging>pom</packaging>
<name>Embedded Jopr</name>
<description>a web application that provides administration and monitoring of the app server instance to which it is deployed</description>
@@ -62,11 +62,11 @@
<seam.embedded.groupId>org.jboss.seam.embedded</seam.embedded.groupId>
<!-- dependency versions -->
- <jaxb-api.version>2.1</jaxb-api.version>
- <jaxb-impl.version>2.1.6</jaxb-impl.version>
- <jopr.version>2.4.0-SNAPSHOT</jopr.version>
+ <jaxb.version>2.1.9</jaxb.version>
+ <jboss.web.version>3.0.0-beta-1</jboss.web.version>
+ <jopr.version>1.4.0.B01</jopr.version>
<richfaces.version>3.3.3.BETA1</richfaces.version>
- <rhq.version>1.3.0.GA</rhq.version>
+ <rhq.version>1.4.0.B01</rhq.version>
<seam.version>2.1.0.SP1</seam.version>
<seam.embedded.version>beta3.SP3</seam.embedded.version>
<!-- This is a special patched version of not-yet-released Facelets 1.1.15,
14 years, 12 months
EMBJOPR SVN: r866 - in branches/EmbJopr-1.4.0-SN-EAP5: core and 21 other directories.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2010-01-18 11:22:50 -0500 (Mon, 18 Jan 2010)
New Revision: 866
Added:
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/generated-rhq-plugin.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/bin/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/bin/run.conf.bat
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/conf/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/conf/jboss-log4j.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyLocalTxCF-ds.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyNoTxCF-ds.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyOracleLocalTxDS-ds.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyOracleNoTxDS-ds.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyOracleXADS-ds.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyQueue-service.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyQueueWithSecurityConfig-service.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyTopic-service.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyXATxCF-ds.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/messaging/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/messaging/example-destinations-service.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/vhosts-test.war
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/conf/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/conf/jboss-log4j.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyLocalTxCF-ds.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyNoTxCF-ds.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyOracleLocalTxDS-ds.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyOracleNoTxDS-ds.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyOracleXADS-ds.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyQueue-service.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyQueueWithSecurityConfig-service.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyTopic-service.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyXATxCF-ds.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/messaging/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/messaging/example-destinations-service.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/vhosts-test.war
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/pom.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/src/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/src/main/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/src/main/webapp/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/src/main/webapp/META-INF/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/src/main/webapp/META-INF/jboss-structure.xml
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/src/main/webapp/WEB-INF/
branches/EmbJopr-1.4.0-SN-EAP5/jbas6/src/main/webapp/WEB-INF/jboss-web.xml
Modified:
branches/EmbJopr-1.4.0-SN-EAP5/
branches/EmbJopr-1.4.0-SN-EAP5/core/
branches/EmbJopr-1.4.0-SN-EAP5/core/pom.xml
branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/pom.xml
branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/main/resources/
branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/main/webapp/WEB-INF/web.xml
branches/EmbJopr-1.4.0-SN-EAP5/pom.xml
Log:
Updates to EAP 5 testing branch.
Property changes on: branches/EmbJopr-1.4.0-SN-EAP5
___________________________________________________________________
Name: svn:ignore
+ nb-configuration.xml
nbactions.xml
Property changes on: branches/EmbJopr-1.4.0-SN-EAP5/core
___________________________________________________________________
Name: svn:ignore
- target
+ navigation.NavData
target
nbactions.xml
faces-config.NavData
Modified: branches/EmbJopr-1.4.0-SN-EAP5/core/pom.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/core/pom.xml 2010-01-18 15:05:32 UTC (rev 865)
+++ branches/EmbJopr-1.4.0-SN-EAP5/core/pom.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -210,7 +210,7 @@
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl-jsf2</artifactId>
+ <artifactId>richfaces-impl</artifactId>
<version>${richfaces.version}</version>
</dependency>
<dependency>
Property changes on: branches/EmbJopr-1.4.0-SN-EAP5/jbas6
___________________________________________________________________
Name: svn:ignore
+ target
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/generated-rhq-plugin.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/generated-rhq-plugin.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/generated-rhq-plugin.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,2786 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<plugin xmlns="urn:xmlns:rhq-plugin" xmlns:c="urn:xmlns:rhq-configuration">
+ <service name="NoTx ConnectionFactory">
+ <operation name="flush" displayName="Flush" description="Flush the connections in the pool"/>
+ <operation name="listFormattedSubPoolStatistics" displayName="List Formatted Sub Pool Statistics" description="Obtain a formatted statistics report">
+ <parameters>
+ <c:simple-property required="false" name="formatClassName" description="The StatisticsFormatter class name"/>
+ </parameters>
+ <results>
+ <c:notes>Obtain a formatted statistics report</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="listStatistics" displayName="List Statistics" description="Obtain a statistics report">
+ <results>
+ <c:notes>Obtain a statistics report</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="testConnection" displayName="Test Connection" description="Test if a connection can be obtained">
+ <results>
+ <c:notes>Test if a connection can be obtained</c:notes>
+ <c:simple-property type="boolean" required="false" name="result"/>
+ </results>
+ </operation>
+ <metric property="availableConnectionCount" measurementType="dynamic" displayType="detail" displayName="Available Connection Count" description="number of available connection" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionCount" measurementType="dynamic" displayType="detail" displayName="Connection Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionCreatedCount" measurementType="dynamic" displayType="detail" displayName="Connection Created Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionDestroyedCount" measurementType="dynamic" displayType="detail" displayName="Connection Destroyed Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="inUseConnectionCount" measurementType="dynamic" displayType="detail" displayName="In Use Connection Count" description="number of connections currently in use" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="local-transaction" displayType="summary" displayName="Local Transaction" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="maxConnectionsInUseCount" measurementType="dynamic" displayType="detail" displayName="Max Connections In Use Count" description="number of maximum connections in use" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="maxSize" measurementType="dynamic" displayType="detail" displayName="Max Size" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="minSize" measurementType="dynamic" displayType="detail" displayName="Min Size" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="poolJndiName" displayType="summary" displayName="Pool Jndi Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:simple-property type="integer" required="false" name="allocation-retry" description="The number of times allocation retries should be tried"/>
+ <c:simple-property type="long" required="false" name="allocation-retry-wait-millis" description="The time to wait between allocation retries"/>
+ <c:simple-property type="boolean" required="false" name="background-validation" description="Whether to use backgroup validation"/>
+ <c:simple-property type="long" required="false" name="background-validation-millis"/>
+ <c:simple-property type="long" required="false" name="blocking-timeout-millis" description="The time to wait for a connection to become available before giving up"/>
+ <c:map-property required="false" name="config-property" description="The connection factory config properties"/>
+ <c:simple-property name="connection-definition" description="The connection factory class name"/>
+ <c:simple-property type="integer" required="false" name="idle-timeout-minutes" description="The idle timeout in minutes"/>
+ <c:simple-property type="boolean" required="false" name="interleaving"/>
+ <c:simple-property type="boolean" required="false" name="isSameRM-override-value"/>
+ <c:simple-property required="false" name="jmx-invoker-name" description="The name of the JMX invoker"/>
+ <c:simple-property name="jndi-name" description="The global JNDI name to bind the factory under"/>
+ <c:simple-property type="boolean" required="false" readOnly="true" name="local-transaction"/>
+ <c:simple-property type="integer" required="false" name="max-pool-size" description="The max size of the pool"/>
+ <c:map-property required="false" name="metadata">
+ <c:simple-property required="false" name="typeMapping"/>
+ </c:map-property>
+ <c:simple-property type="integer" required="false" name="min-pool-size" description="The min size of the pool"/>
+ <c:simple-property type="boolean" required="false" name="no-tx-separate-pools"/>
+ <c:simple-property required="false" name="poolJndiName"/>
+ <c:simple-property type="boolean" required="false" name="prefill" description="Whether to prefill the pool"/>
+ <c:simple-property name="rar-name" description="The resource adapter archive name"/>
+ <c:map-property required="false" name="security-domain" description="The security-domain used to validate connections">
+ <c:simple-property required="false" name="domain" description="the security domain"/>
+ <c:simple-property required="false" name="securityDeploymentType" description="the security deployment type"/>
+ </c:map-property>
+ <c:simple-property required="false" name="statistics-formatter"/>
+ <c:simple-property type="boolean" required="false" name="track-connection-by-tx"/>
+ <c:simple-property required="false" name="type-mapping"/>
+ <c:simple-property type="boolean" required="false" name="use-java-context" description="Should the jndi name be bound under the java: context"/>
+ <c:simple-property type="boolean" required="false" name="use-strict-min"/>
+ <c:simple-property type="boolean" required="false" name="validate-on-match"/>
+ </resource-configuration>
+ </service>
+ <service name="Tx ConnectionFactory">
+ <operation name="flush" displayName="Flush" description="Flush the connections in the pool"/>
+ <operation name="listFormattedSubPoolStatistics" displayName="List Formatted Sub Pool Statistics" description="Obtain a formatted statistics report">
+ <parameters>
+ <c:simple-property required="false" name="formatClassName" description="The StatisticsFormatter class name"/>
+ </parameters>
+ <results>
+ <c:notes>Obtain a formatted statistics report</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="listStatistics" displayName="List Statistics" description="Obtain a statistics report">
+ <results>
+ <c:notes>Obtain a statistics report</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="testConnection" displayName="Test Connection" description="Test if a connection can be obtained">
+ <results>
+ <c:notes>Test if a connection can be obtained</c:notes>
+ <c:simple-property type="boolean" required="false" name="result"/>
+ </results>
+ </operation>
+ <metric property="availableConnectionCount" measurementType="dynamic" displayType="detail" displayName="Available Connection Count" description="number of available connection" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionCount" measurementType="dynamic" displayType="detail" displayName="Connection Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionCreatedCount" measurementType="dynamic" displayType="detail" displayName="Connection Created Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionDestroyedCount" measurementType="dynamic" displayType="detail" displayName="Connection Destroyed Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="inUseConnectionCount" measurementType="dynamic" displayType="detail" displayName="In Use Connection Count" description="number of connections currently in use" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="local-transaction" displayType="summary" displayName="Local Transaction" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="maxConnectionsInUseCount" measurementType="dynamic" displayType="detail" displayName="Max Connections In Use Count" description="number of maximum connections in use" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="maxSize" measurementType="dynamic" displayType="detail" displayName="Max Size" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="minSize" measurementType="dynamic" displayType="detail" displayName="Min Size" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="poolJndiName" displayType="summary" displayName="Pool Jndi Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="xa-transaction" displayType="summary" displayName="Xa Transaction" description="The XA/local transaction behavior flag" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:simple-property type="integer" required="false" name="allocation-retry" description="The number of times allocation retries should be tried"/>
+ <c:simple-property type="long" required="false" name="allocation-retry-wait-millis" description="The time to wait between allocation retries"/>
+ <c:simple-property type="boolean" required="false" name="background-validation" description="Whether to use backgroup validation"/>
+ <c:simple-property type="long" required="false" name="background-validation-millis"/>
+ <c:simple-property type="long" required="false" name="blocking-timeout-millis" description="The time to wait for a connection to become available before giving up"/>
+ <c:map-property required="false" name="config-property" description="The connection factory config properties"/>
+ <c:simple-property name="connection-definition" description="The connection factory class name"/>
+ <c:simple-property type="integer" required="false" name="idle-timeout-minutes" description="The idle timeout in minutes"/>
+ <c:simple-property type="boolean" required="false" name="interleaving"/>
+ <c:simple-property type="boolean" required="false" name="isSameRM-override-value"/>
+ <c:simple-property required="false" name="jmx-invoker-name" description="The name of the JMX invoker"/>
+ <c:simple-property name="jndi-name" description="The global JNDI name to bind the factory under"/>
+ <c:simple-property type="boolean" required="false" readOnly="true" name="local-transaction"/>
+ <c:simple-property type="integer" required="false" name="max-pool-size" description="The max size of the pool"/>
+ <c:map-property required="false" name="metadata">
+ <c:simple-property required="false" name="typeMapping"/>
+ </c:map-property>
+ <c:simple-property type="integer" required="false" name="min-pool-size" description="The min size of the pool"/>
+ <c:simple-property type="boolean" required="false" name="no-tx-separate-pools"/>
+ <c:simple-property required="false" name="poolJndiName"/>
+ <c:simple-property type="boolean" required="false" name="prefill" description="Whether to prefill the pool"/>
+ <c:simple-property name="rar-name" description="The resource adapter archive name"/>
+ <c:map-property required="false" name="security-domain" description="The security-domain used to validate connections">
+ <c:simple-property required="false" name="domain" description="the security domain"/>
+ <c:simple-property required="false" name="securityDeploymentType" description="the security deployment type"/>
+ </c:map-property>
+ <c:simple-property required="false" name="statistics-formatter"/>
+ <c:simple-property type="boolean" required="false" name="track-connection-by-tx"/>
+ <c:simple-property required="false" name="type-mapping"/>
+ <c:simple-property type="boolean" required="false" name="use-java-context" description="Should the jndi name be bound under the java: context"/>
+ <c:simple-property type="boolean" required="false" name="use-strict-min"/>
+ <c:simple-property type="boolean" required="false" name="validate-on-match"/>
+ <c:simple-property type="integer" required="false" name="xa-resource-timeout" description="The XA resource timeout"/>
+ <c:simple-property type="boolean" required="false" readOnly="true" name="xa-transaction" description="The XA/local transaction behavior flag"/>
+ </resource-configuration>
+ </service>
+ <service name="LocalTx DataSource">
+ <operation name="flush" displayName="Flush" description="Flush the connections in the pool"/>
+ <operation name="listFormattedSubPoolStatistics" displayName="List Formatted Sub Pool Statistics" description="Obtain a formatted statistics report">
+ <parameters>
+ <c:simple-property required="false" name="formatClassName" description="The StatisticsFormatter class name"/>
+ </parameters>
+ <results>
+ <c:notes>Obtain a formatted statistics report</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="listStatistics" displayName="List Statistics" description="Obtain a statistics report">
+ <results>
+ <c:notes>Obtain a statistics report</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="testConnection" displayName="Test Connection" description="Test if a connection can be obtained">
+ <results>
+ <c:notes>Test if a connection can be obtained</c:notes>
+ <c:simple-property type="boolean" required="false" name="result"/>
+ </results>
+ </operation>
+ <metric property="availableConnectionCount" measurementType="dynamic" displayType="detail" displayName="Available Connection Count" description="number of available connection" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionCount" measurementType="dynamic" displayType="detail" displayName="Connection Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionCreatedCount" measurementType="dynamic" displayType="detail" displayName="Connection Created Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionDestroyedCount" measurementType="dynamic" displayType="detail" displayName="Connection Destroyed Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="inUseConnectionCount" measurementType="dynamic" displayType="detail" displayName="In Use Connection Count" description="number of connections currently in use" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="local-transaction" displayType="summary" displayName="Local Transaction" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="maxConnectionsInUseCount" measurementType="dynamic" displayType="detail" displayName="Max Connections In Use Count" description="number of maximum connections in use" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="maxSize" measurementType="dynamic" displayType="detail" displayName="Max Size" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="minSize" measurementType="dynamic" displayType="detail" displayName="Min Size" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="poolJndiName" displayType="summary" displayName="Pool Jndi Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:simple-property type="integer" required="false" name="allocation-retry" description="The number of times allocation retries should be tried"/>
+ <c:simple-property type="long" required="false" name="allocation-retry-wait-millis" description="The time to wait between allocation retries"/>
+ <c:simple-property type="boolean" required="false" name="background-validation" description="Whether to use backgroup validation"/>
+ <c:simple-property type="long" required="false" name="background-validation-millis"/>
+ <c:simple-property type="long" required="false" name="blocking-timeout-millis" description="The time to wait for a connection to become available before giving up"/>
+ <c:simple-property required="false" name="check-valid-connection-sql" description="The SQL statement to validate a connection"/>
+ <c:map-property required="false" readOnly="true" name="config-property" description="The connection factory property info"/>
+ <c:simple-property name="connection-definition" description="The connection factory class name"/>
+ <c:map-property required="false" name="connection-properties" description="The DataSource connection properties"/>
+ <c:simple-property name="connection-url" description="The DataSource connection URL"/>
+ <c:simple-property name="driver-class" description="The DataSource connection driver class name"/>
+ <c:simple-property required="false" name="exception-sorter-class-name" description="The exception sorter class name"/>
+ <c:simple-property type="integer" required="false" name="idle-timeout-minutes" description="The idle timeout in minutes"/>
+ <c:simple-property type="boolean" required="false" name="interleaving"/>
+ <c:simple-property type="boolean" required="false" name="isSameRM-override-value"/>
+ <c:simple-property required="false" name="jmx-invoker-name" description="The name of the JMX invoker"/>
+ <c:simple-property name="jndi-name" description="The global JNDI name to bind the factory under"/>
+ <c:simple-property type="boolean" required="false" readOnly="true" name="local-transaction"/>
+ <c:simple-property type="integer" required="false" name="max-pool-size" description="The max size of the pool"/>
+ <c:map-property required="false" name="metadata">
+ <c:simple-property required="false" name="typeMapping"/>
+ </c:map-property>
+ <c:simple-property type="integer" required="false" name="min-pool-size" description="The min size of the pool"/>
+ <c:simple-property required="false" name="new-connection-sql" description="The new connection SQL"/>
+ <c:simple-property type="boolean" required="false" name="no-tx-separate-pools"/>
+ <c:simple-property required="false" name="password" description="The DataSource password"/>
+ <c:simple-property required="false" name="poolJndiName"/>
+ <c:simple-property type="boolean" required="false" name="prefill" description="Whether to prefill the pool"/>
+ <c:simple-property type="integer" required="false" name="prepared-statement-cache-size" description="The DataSource prepared statement cache size"/>
+ <c:simple-property type="integer" required="false" name="query-timeout" description="The query timeout"/>
+ <c:simple-property name="rar-name" description="The resource adapter archive name"/>
+ <c:map-property required="false" name="security-domain" description="The security-domain used to validate connections">
+ <c:simple-property required="false" name="domain" description="the security domain"/>
+ <c:simple-property required="false" name="securityDeploymentType" description="the security deployment type"/>
+ </c:map-property>
+ <c:simple-property type="boolean" required="false" name="set-tx-query-timeout" description="Should query timeout be enabled"/>
+ <c:simple-property type="boolean" required="false" name="share-prepared-statements" description="Should prepared statements be shared"/>
+ <c:simple-property required="false" name="stale-connection-checker-class-name" description="The DataSource stale connection checker class name"/>
+ <c:simple-property required="false" name="statistics-formatter"/>
+ <c:simple-property type="boolean" required="false" name="track-connection-by-tx"/>
+ <c:simple-property required="false" name="track-statements" description="The track statements method"/>
+ <c:simple-property required="false" name="transaction-isolation" description="The DataSource transaction isolation level"/>
+ <c:simple-property required="false" name="type-mapping"/>
+ <c:simple-property required="false" name="url-delimiter" description="The DataSource url delimiter"/>
+ <c:simple-property required="false" name="url-selector-strategy-class-name" description="The DataSource url selector strategy class name"/>
+ <c:simple-property type="boolean" required="false" name="use-java-context" description="Should the jndi name be bound under the java: context"/>
+ <c:simple-property type="boolean" required="false" name="use-strict-min"/>
+ <c:simple-property type="long" required="false" name="use-try-lock" description="The internal lock timeout"/>
+ <c:simple-property required="false" name="user-name" description="The DataSource username"/>
+ <c:simple-property required="false" name="valid-connection-checker-class-name" description="The DataSource connection checker class name"/>
+ <c:simple-property type="boolean" required="false" name="validate-on-match"/>
+ </resource-configuration>
+ </service>
+ <service name="NoTx DataSource">
+ <operation name="flush" displayName="Flush" description="Flush the connections in the pool"/>
+ <operation name="listFormattedSubPoolStatistics" displayName="List Formatted Sub Pool Statistics" description="Obtain a formatted statistics report">
+ <parameters>
+ <c:simple-property required="false" name="formatClassName" description="The StatisticsFormatter class name"/>
+ </parameters>
+ <results>
+ <c:notes>Obtain a formatted statistics report</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="listStatistics" displayName="List Statistics" description="Obtain a statistics report">
+ <results>
+ <c:notes>Obtain a statistics report</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="testConnection" displayName="Test Connection" description="Test if a connection can be obtained">
+ <results>
+ <c:notes>Test if a connection can be obtained</c:notes>
+ <c:simple-property type="boolean" required="false" name="result"/>
+ </results>
+ </operation>
+ <metric property="availableConnectionCount" measurementType="dynamic" displayType="detail" displayName="Available Connection Count" description="number of available connection" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionCount" measurementType="dynamic" displayType="detail" displayName="Connection Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionCreatedCount" measurementType="dynamic" displayType="detail" displayName="Connection Created Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionDestroyedCount" measurementType="dynamic" displayType="detail" displayName="Connection Destroyed Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="inUseConnectionCount" measurementType="dynamic" displayType="detail" displayName="In Use Connection Count" description="number of connections currently in use" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="local-transaction" displayType="summary" displayName="Local Transaction" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="maxConnectionsInUseCount" measurementType="dynamic" displayType="detail" displayName="Max Connections In Use Count" description="number of maximum connections in use" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="maxSize" measurementType="dynamic" displayType="detail" displayName="Max Size" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="minSize" measurementType="dynamic" displayType="detail" displayName="Min Size" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="poolJndiName" displayType="summary" displayName="Pool Jndi Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:simple-property type="integer" required="false" name="allocation-retry" description="The number of times allocation retries should be tried"/>
+ <c:simple-property type="long" required="false" name="allocation-retry-wait-millis" description="The time to wait between allocation retries"/>
+ <c:simple-property type="boolean" required="false" name="background-validation" description="Whether to use backgroup validation"/>
+ <c:simple-property type="long" required="false" name="background-validation-millis"/>
+ <c:simple-property type="long" required="false" name="blocking-timeout-millis" description="The time to wait for a connection to become available before giving up"/>
+ <c:simple-property required="false" name="check-valid-connection-sql" description="The SQL statement to validate a connection"/>
+ <c:map-property required="false" readOnly="true" name="config-property" description="The connection factory property info"/>
+ <c:simple-property name="connection-definition" description="The connection factory class name"/>
+ <c:map-property required="false" name="connection-properties" description="The DataSource connection properties"/>
+ <c:simple-property name="connection-url" description="The DataSource connection URL"/>
+ <c:simple-property name="driver-class" description="The DataSource connection driver class name"/>
+ <c:simple-property required="false" name="exception-sorter-class-name" description="The exception sorter class name"/>
+ <c:simple-property type="integer" required="false" name="idle-timeout-minutes" description="The idle timeout in minutes"/>
+ <c:simple-property type="boolean" required="false" name="interleaving"/>
+ <c:simple-property type="boolean" required="false" name="isSameRM-override-value"/>
+ <c:simple-property required="false" name="jmx-invoker-name" description="The name of the JMX invoker"/>
+ <c:simple-property name="jndi-name" description="The global JNDI name to bind the factory under"/>
+ <c:simple-property type="boolean" required="false" readOnly="true" name="local-transaction"/>
+ <c:simple-property type="integer" required="false" name="max-pool-size" description="The max size of the pool"/>
+ <c:map-property required="false" name="metadata">
+ <c:simple-property required="false" name="typeMapping"/>
+ </c:map-property>
+ <c:simple-property type="integer" required="false" name="min-pool-size" description="The min size of the pool"/>
+ <c:simple-property required="false" name="new-connection-sql" description="The new connection SQL"/>
+ <c:simple-property type="boolean" required="false" name="no-tx-separate-pools"/>
+ <c:simple-property required="false" name="password" description="The DataSource password"/>
+ <c:simple-property required="false" name="poolJndiName"/>
+ <c:simple-property type="boolean" required="false" name="prefill" description="Whether to prefill the pool"/>
+ <c:simple-property type="integer" required="false" name="prepared-statement-cache-size" description="The DataSource prepared statement cache size"/>
+ <c:simple-property type="integer" required="false" name="query-timeout" description="The query timeout"/>
+ <c:simple-property name="rar-name" description="The resource adapter archive name"/>
+ <c:map-property required="false" name="security-domain" description="The security-domain used to validate connections">
+ <c:simple-property required="false" name="domain" description="the security domain"/>
+ <c:simple-property required="false" name="securityDeploymentType" description="the security deployment type"/>
+ </c:map-property>
+ <c:simple-property type="boolean" required="false" name="set-tx-query-timeout" description="Should query timeout be enabled"/>
+ <c:simple-property type="boolean" required="false" name="share-prepared-statements" description="Should prepared statements be shared"/>
+ <c:simple-property required="false" name="stale-connection-checker-class-name" description="The DataSource stale connection checker class name"/>
+ <c:simple-property required="false" name="statistics-formatter"/>
+ <c:simple-property type="boolean" required="false" name="track-connection-by-tx"/>
+ <c:simple-property required="false" name="track-statements" description="The track statements method"/>
+ <c:simple-property required="false" name="transaction-isolation" description="The DataSource transaction isolation level"/>
+ <c:simple-property required="false" name="type-mapping"/>
+ <c:simple-property required="false" name="url-delimiter" description="The DataSource url delimiter"/>
+ <c:simple-property required="false" name="url-selector-strategy-class-name" description="The DataSource url selector strategy class name"/>
+ <c:simple-property type="boolean" required="false" name="use-java-context" description="Should the jndi name be bound under the java: context"/>
+ <c:simple-property type="boolean" required="false" name="use-strict-min"/>
+ <c:simple-property type="long" required="false" name="use-try-lock" description="The internal lock timeout"/>
+ <c:simple-property required="false" name="user-name" description="The DataSource username"/>
+ <c:simple-property required="false" name="valid-connection-checker-class-name" description="The DataSource connection checker class name"/>
+ <c:simple-property type="boolean" required="false" name="validate-on-match"/>
+ </resource-configuration>
+ </service>
+ <service name="XA DataSource">
+ <operation name="flush" displayName="Flush" description="Flush the connections in the pool"/>
+ <operation name="listFormattedSubPoolStatistics" displayName="List Formatted Sub Pool Statistics" description="Obtain a formatted statistics report">
+ <parameters>
+ <c:simple-property required="false" name="formatClassName" description="The StatisticsFormatter class name"/>
+ </parameters>
+ <results>
+ <c:notes>Obtain a formatted statistics report</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="listStatistics" displayName="List Statistics" description="Obtain a statistics report">
+ <results>
+ <c:notes>Obtain a statistics report</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="testConnection" displayName="Test Connection" description="Test if a connection can be obtained">
+ <results>
+ <c:notes>Test if a connection can be obtained</c:notes>
+ <c:simple-property type="boolean" required="false" name="result"/>
+ </results>
+ </operation>
+ <metric property="availableConnectionCount" measurementType="dynamic" displayType="detail" displayName="Available Connection Count" description="number of available connection" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionCount" measurementType="dynamic" displayType="detail" displayName="Connection Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionCreatedCount" measurementType="dynamic" displayType="detail" displayName="Connection Created Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="connectionDestroyedCount" measurementType="dynamic" displayType="detail" displayName="Connection Destroyed Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="inUseConnectionCount" measurementType="dynamic" displayType="detail" displayName="In Use Connection Count" description="number of connections currently in use" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="local-transaction" displayType="summary" displayName="Local Transaction" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="maxConnectionsInUseCount" measurementType="dynamic" displayType="detail" displayName="Max Connections In Use Count" description="number of maximum connections in use" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="maxSize" measurementType="dynamic" displayType="detail" displayName="Max Size" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="minSize" measurementType="dynamic" displayType="detail" displayName="Min Size" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="poolJndiName" displayType="summary" displayName="Pool Jndi Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:simple-property type="integer" required="false" name="allocation-retry" description="The number of times allocation retries should be tried"/>
+ <c:simple-property type="long" required="false" name="allocation-retry-wait-millis" description="The time to wait between allocation retries"/>
+ <c:simple-property type="boolean" required="false" name="background-validation" description="Whether to use backgroup validation"/>
+ <c:simple-property type="long" required="false" name="background-validation-millis"/>
+ <c:simple-property type="long" required="false" name="blocking-timeout-millis" description="The time to wait for a connection to become available before giving up"/>
+ <c:simple-property required="false" name="check-valid-connection-sql" description="The SQL statement to validate a connection"/>
+ <c:map-property required="false" readOnly="true" name="config-property" description="The connection factory property info"/>
+ <c:simple-property name="connection-definition" description="The connection factory class name"/>
+ <c:simple-property required="false" name="exception-sorter-class-name" description="The exception sorter class name"/>
+ <c:simple-property type="integer" required="false" name="idle-timeout-minutes" description="The idle timeout in minutes"/>
+ <c:simple-property type="boolean" required="false" name="interleaving"/>
+ <c:simple-property type="boolean" required="false" name="isSameRM-override-value"/>
+ <c:simple-property required="false" name="jmx-invoker-name" description="The name of the JMX invoker"/>
+ <c:simple-property name="jndi-name" description="The global JNDI name to bind the factory under"/>
+ <c:simple-property type="boolean" required="false" readOnly="true" name="local-transaction"/>
+ <c:simple-property type="integer" required="false" name="max-pool-size" description="The max size of the pool"/>
+ <c:map-property required="false" name="metadata">
+ <c:simple-property required="false" name="typeMapping"/>
+ </c:map-property>
+ <c:simple-property type="integer" required="false" name="min-pool-size" description="The min size of the pool"/>
+ <c:simple-property required="false" name="new-connection-sql" description="The new connection SQL"/>
+ <c:simple-property type="boolean" required="false" name="no-tx-separate-pools"/>
+ <c:simple-property required="false" name="password" description="The DataSource password"/>
+ <c:simple-property required="false" name="poolJndiName"/>
+ <c:simple-property type="boolean" required="false" name="prefill" description="Whether to prefill the pool"/>
+ <c:simple-property type="integer" required="false" name="prepared-statement-cache-size" description="The DataSource prepared statement cache size"/>
+ <c:simple-property type="integer" required="false" name="query-timeout" description="The query timeout"/>
+ <c:simple-property name="rar-name" description="The resource adapter archive name"/>
+ <c:map-property required="false" name="security-domain" description="The security-domain used to validate connections">
+ <c:simple-property required="false" name="domain" description="the security domain"/>
+ <c:simple-property required="false" name="securityDeploymentType" description="the security deployment type"/>
+ </c:map-property>
+ <c:simple-property type="boolean" required="false" name="set-tx-query-timeout" description="Should query timeout be enabled"/>
+ <c:simple-property type="boolean" required="false" name="share-prepared-statements" description="Should prepared statements be shared"/>
+ <c:simple-property required="false" name="stale-connection-checker-class-name" description="The DataSource stale connection checker class name"/>
+ <c:simple-property required="false" name="statistics-formatter"/>
+ <c:simple-property type="boolean" required="false" name="track-connection-by-tx"/>
+ <c:simple-property required="false" name="track-statements" description="The track statements method"/>
+ <c:simple-property required="false" name="transaction-isolation" description="The DataSource transaction isolation level"/>
+ <c:simple-property required="false" name="type-mapping"/>
+ <c:simple-property required="false" name="url-delimiter" description="The DataSource url delimiter"/>
+ <c:simple-property required="false" name="url-property" description="The url-property"/>
+ <c:simple-property required="false" name="url-selector-strategy-class-name" description="The DataSource url selector strategy class name"/>
+ <c:simple-property type="boolean" required="false" name="use-java-context" description="Should the jndi name be bound under the java: context"/>
+ <c:simple-property type="boolean" required="false" name="use-strict-min"/>
+ <c:simple-property type="long" required="false" name="use-try-lock" description="The internal lock timeout"/>
+ <c:simple-property required="false" name="user-name" description="The DataSource username"/>
+ <c:simple-property required="false" name="valid-connection-checker-class-name" description="The DataSource connection checker class name"/>
+ <c:simple-property type="boolean" required="false" name="validate-on-match"/>
+ <c:simple-property name="xa-datasource-class" description="The XADataSource class"/>
+ <c:map-property required="false" name="xa-datasource-properties" description="The xa datasource properties"/>
+ <c:simple-property type="integer" required="false" name="xa-resource-timeout" description="The XAResource timeout"/>
+ </resource-configuration>
+ </service>
+ <service name="Entity EJB">
+ <operation name="create" displayName="Create"/>
+ <operation name="destroy" displayName="Destroy"/>
+ <operation name="flushCache" displayName="Flush Cache"/>
+ <operation name="getTimerService" displayName="Get Timer Service">
+ <parameters>
+ <c:map-property required="false" name="p1" description=""/>
+ </parameters>
+ <results>
+ <c:notes>getTimerService</c:notes>
+ <c:map-property required="false" name="result">
+ <c:list-property name="timers">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </c:map-property>
+ </results>
+ </operation>
+ <operation name="invoke" displayName="Invoke">
+ <parameters>
+ <c:map-property required="false" name="p1" description="">
+ <c:list-property name="arguments">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ <c:map-property required="false" name="asIsPayload">
+ <c:map-property required="false" name="key"/>
+ </c:map-property>
+ <c:simple-property type="boolean" required="false" name="interVM"/>
+ <c:simple-property type="boolean" required="false" name="local"/>
+ <c:map-property required="false" name="payload">
+ <c:map-property required="false" name="key"/>
+ </c:map-property>
+ <c:simple-property type="boolean" required="false" name="secure"/>
+ <c:map-property required="false" name="transientPayload">
+ <c:map-property required="false" name="key"/>
+ </c:map-property>
+ </c:map-property>
+ </parameters>
+ <results>
+ <c:notes>invoke</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="jbossInternalLifecycle" displayName="Jboss Internal Lifecycle">
+ <parameters>
+ <c:simple-property required="false" name="p1" description=""/>
+ </parameters>
+ </operation>
+ <operation name="removeTimerService" displayName="Remove Timer Service">
+ <parameters>
+ <c:map-property required="false" name="p1" description=""/>
+ </parameters>
+ </operation>
+ <operation name="resetInvocationStats" displayName="Reset Invocation Stats"/>
+ <operation name="start" displayName="Start"/>
+ <operation name="stop" displayName="Stop"/>
+ <metric property="BeanMetaData.beanManagedTx" measurementType="dynamic" displayType="detail" displayName="Bean Managed Tx" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.callByValue" measurementType="dynamic" displayType="detail" displayName="Call By Value" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.clustered" measurementType="dynamic" displayType="detail" displayName="Clustered" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.configurationName" displayType="detail" displayName="Configuration Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.containerManagedTx" measurementType="dynamic" displayType="detail" displayName="Container Managed Tx" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.containerObjectNameJndiName" displayType="detail" displayName="Container Object Name Jndi Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.defaultConfigurationName" displayType="detail" displayName="Default Configuration Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.ejbClass" displayType="detail" displayName="Ejb Class" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.ejbName" displayType="detail" displayName="Ejb Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.entity" measurementType="dynamic" displayType="detail" displayName="Entity" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.exceptionRollback" measurementType="dynamic" displayType="detail" displayName="Exception Rollback" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.excludeMissingMethods" measurementType="dynamic" displayType="detail" displayName="Exclude Missing Methods" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.home" displayType="detail" displayName="Home" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.jndiName" displayType="detail" displayName="Jndi Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.local" displayType="detail" displayName="Local" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.localHome" displayType="detail" displayName="Local Home" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.localJndiName" displayType="detail" displayName="Local Jndi Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.messageDriven" measurementType="dynamic" displayType="detail" displayName="Message Driven" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.remote" displayType="detail" displayName="Remote" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.securityProxy" displayType="detail" displayName="Security Proxy" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.serviceEndpoint" displayType="detail" displayName="Service Endpoint" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.session" measurementType="dynamic" displayType="detail" displayName="Session" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.timerPersistence" measurementType="dynamic" displayType="detail" displayName="Timer Persistence" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanTypeName" displayType="summary" displayName="Bean Type Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="CacheSize" measurementType="dynamic" displayType="detail" displayName="Cache Size" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="CreateCount" measurementType="dynamic" displayType="detail" displayName="Create Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="DeploymentName" displayType="summary" displayName="Deployment Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="DetypedInvocationStatistics.concurrentCalls" measurementType="dynamic" displayType="detail" displayName="Concurrent Calls" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="DetypedInvocationStatistics.lastResetTime" measurementType="dynamic" displayType="detail" displayName="Last Reset Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="DetypedInvocationStatistics.maxConcurrentCalls" measurementType="dynamic" displayType="detail" displayName="Max Concurrent Calls" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="EjbModule.callByValue" measurementType="dynamic" displayType="detail" displayName="Call By Value" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="EjbModule.name" displayType="detail" displayName="Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="EjbModule.state" measurementType="dynamic" displayType="detail" displayName="State" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="EjbModule.stateString" displayType="detail" displayName="State String" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="EnvContext.nameInNamespace" displayType="detail" displayName="Name In Namespace" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="Name" displayType="summary" displayName="Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="RemoveCount" measurementType="dynamic" displayType="detail" displayName="Remove Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="State" measurementType="dynamic" displayType="detail" displayName="State" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="StateString" displayType="summary" displayName="State String" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ </service>
+ <service name="MDB EJB">
+ <operation name="create" displayName="Create"/>
+ <operation name="destroy" displayName="Destroy"/>
+ <operation name="getTimerService" displayName="Get Timer Service">
+ <parameters>
+ <c:map-property required="false" name="p1" description=""/>
+ </parameters>
+ <results>
+ <c:notes>getTimerService</c:notes>
+ <c:map-property required="false" name="result">
+ <c:list-property name="timers">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </c:map-property>
+ </results>
+ </operation>
+ <operation name="invoke" displayName="Invoke">
+ <parameters>
+ <c:map-property required="false" name="p1" description="">
+ <c:list-property name="arguments">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ <c:map-property required="false" name="asIsPayload">
+ <c:map-property required="false" name="key"/>
+ </c:map-property>
+ <c:simple-property type="boolean" required="false" name="interVM"/>
+ <c:simple-property type="boolean" required="false" name="local"/>
+ <c:map-property required="false" name="payload">
+ <c:map-property required="false" name="key"/>
+ </c:map-property>
+ <c:simple-property type="boolean" required="false" name="secure"/>
+ <c:map-property required="false" name="transientPayload">
+ <c:map-property required="false" name="key"/>
+ </c:map-property>
+ </c:map-property>
+ </parameters>
+ <results>
+ <c:notes>invoke</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="jbossInternalLifecycle" displayName="Jboss Internal Lifecycle">
+ <parameters>
+ <c:simple-property required="false" name="p1" description=""/>
+ </parameters>
+ </operation>
+ <operation name="removeTimerService" displayName="Remove Timer Service">
+ <parameters>
+ <c:map-property required="false" name="p1" description=""/>
+ </parameters>
+ </operation>
+ <operation name="resetInvocationStats" displayName="Reset Invocation Stats"/>
+ <operation name="start" displayName="Start"/>
+ <operation name="stop" displayName="Stop"/>
+ <metric property="BeanMetaData.beanManagedTx" measurementType="dynamic" displayType="detail" displayName="Bean Managed Tx" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.callByValue" measurementType="dynamic" displayType="detail" displayName="Call By Value" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.clustered" measurementType="dynamic" displayType="detail" displayName="Clustered" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.configurationName" displayType="detail" displayName="Configuration Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.containerManagedTx" measurementType="dynamic" displayType="detail" displayName="Container Managed Tx" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.containerObjectNameJndiName" displayType="detail" displayName="Container Object Name Jndi Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.defaultConfigurationName" displayType="detail" displayName="Default Configuration Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.ejbClass" displayType="detail" displayName="Ejb Class" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.ejbName" displayType="detail" displayName="Ejb Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.entity" measurementType="dynamic" displayType="detail" displayName="Entity" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.exceptionRollback" measurementType="dynamic" displayType="detail" displayName="Exception Rollback" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.excludeMissingMethods" measurementType="dynamic" displayType="detail" displayName="Exclude Missing Methods" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.home" displayType="detail" displayName="Home" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.jndiName" displayType="detail" displayName="Jndi Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.local" displayType="detail" displayName="Local" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.localHome" displayType="detail" displayName="Local Home" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.localJndiName" displayType="detail" displayName="Local Jndi Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.messageDriven" measurementType="dynamic" displayType="detail" displayName="Message Driven" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.remote" displayType="detail" displayName="Remote" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.securityProxy" displayType="detail" displayName="Security Proxy" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.serviceEndpoint" displayType="detail" displayName="Service Endpoint" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.session" measurementType="dynamic" displayType="detail" displayName="Session" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.timerPersistence" measurementType="dynamic" displayType="detail" displayName="Timer Persistence" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanTypeName" displayType="summary" displayName="Bean Type Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="CreateCount" measurementType="dynamic" displayType="detail" displayName="Create Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="DeploymentName" displayType="summary" displayName="Deployment Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="DetypedInvocationStatistics.concurrentCalls" measurementType="dynamic" displayType="detail" displayName="Concurrent Calls" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="DetypedInvocationStatistics.lastResetTime" measurementType="dynamic" displayType="detail" displayName="Last Reset Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="DetypedInvocationStatistics.maxConcurrentCalls" measurementType="dynamic" displayType="detail" displayName="Max Concurrent Calls" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="EjbModule.callByValue" measurementType="dynamic" displayType="detail" displayName="Call By Value" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="EjbModule.name" displayType="detail" displayName="Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="EjbModule.state" measurementType="dynamic" displayType="detail" displayName="State" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="EjbModule.stateString" displayType="detail" displayName="State String" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="EnvContext.nameInNamespace" displayType="detail" displayName="Name In Namespace" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="MessageCount" measurementType="dynamic" displayType="detail" displayName="Message Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="Name" displayType="summary" displayName="Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="RemoveCount" measurementType="dynamic" displayType="detail" displayName="Remove Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="State" measurementType="dynamic" displayType="detail" displayName="State" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="StateString" displayType="summary" displayName="State String" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ </service>
+ <service name="StatefulSession EJB">
+ <operation name="create" displayName="Create"/>
+ <operation name="destroy" displayName="Destroy"/>
+ <operation name="getTimerService" displayName="Get Timer Service">
+ <parameters>
+ <c:map-property required="false" name="p1" description=""/>
+ </parameters>
+ <results>
+ <c:notes>getTimerService</c:notes>
+ <c:map-property required="false" name="result">
+ <c:list-property name="timers">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </c:map-property>
+ </results>
+ </operation>
+ <operation name="invoke" displayName="Invoke">
+ <parameters>
+ <c:map-property required="false" name="p1" description="">
+ <c:list-property name="arguments">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ <c:map-property required="false" name="asIsPayload">
+ <c:map-property required="false" name="key"/>
+ </c:map-property>
+ <c:simple-property type="boolean" required="false" name="interVM"/>
+ <c:simple-property type="boolean" required="false" name="local"/>
+ <c:map-property required="false" name="payload">
+ <c:map-property required="false" name="key"/>
+ </c:map-property>
+ <c:simple-property type="boolean" required="false" name="secure"/>
+ <c:map-property required="false" name="transientPayload">
+ <c:map-property required="false" name="key"/>
+ </c:map-property>
+ </c:map-property>
+ </parameters>
+ <results>
+ <c:notes>invoke</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="jbossInternalLifecycle" displayName="Jboss Internal Lifecycle">
+ <parameters>
+ <c:simple-property required="false" name="p1" description=""/>
+ </parameters>
+ </operation>
+ <operation name="removeTimerService" displayName="Remove Timer Service">
+ <parameters>
+ <c:map-property required="false" name="p1" description=""/>
+ </parameters>
+ </operation>
+ <operation name="resetInvocationStats" displayName="Reset Invocation Stats"/>
+ <operation name="start" displayName="Start"/>
+ <operation name="stop" displayName="Stop"/>
+ <metric property="BeanMetaData.beanManagedTx" measurementType="dynamic" displayType="detail" displayName="Bean Managed Tx" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.callByValue" measurementType="dynamic" displayType="detail" displayName="Call By Value" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.clustered" measurementType="dynamic" displayType="detail" displayName="Clustered" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.configurationName" displayType="detail" displayName="Configuration Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.containerManagedTx" measurementType="dynamic" displayType="detail" displayName="Container Managed Tx" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.containerObjectNameJndiName" displayType="detail" displayName="Container Object Name Jndi Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.defaultConfigurationName" displayType="detail" displayName="Default Configuration Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.ejbClass" displayType="detail" displayName="Ejb Class" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.ejbName" displayType="detail" displayName="Ejb Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.entity" measurementType="dynamic" displayType="detail" displayName="Entity" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.exceptionRollback" measurementType="dynamic" displayType="detail" displayName="Exception Rollback" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.excludeMissingMethods" measurementType="dynamic" displayType="detail" displayName="Exclude Missing Methods" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.home" displayType="detail" displayName="Home" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.jndiName" displayType="detail" displayName="Jndi Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.local" displayType="detail" displayName="Local" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.localHome" displayType="detail" displayName="Local Home" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.localJndiName" displayType="detail" displayName="Local Jndi Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.messageDriven" measurementType="dynamic" displayType="detail" displayName="Message Driven" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.remote" displayType="detail" displayName="Remote" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.securityProxy" displayType="detail" displayName="Security Proxy" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.serviceEndpoint" displayType="detail" displayName="Service Endpoint" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.session" measurementType="dynamic" displayType="detail" displayName="Session" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.timerPersistence" measurementType="dynamic" displayType="detail" displayName="Timer Persistence" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanTypeName" displayType="summary" displayName="Bean Type Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="CreateCount" measurementType="dynamic" displayType="detail" displayName="Create Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="DeploymentName" displayType="summary" displayName="Deployment Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="DetypedInvocationStatistics.concurrentCalls" measurementType="dynamic" displayType="detail" displayName="Concurrent Calls" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="DetypedInvocationStatistics.lastResetTime" measurementType="dynamic" displayType="detail" displayName="Last Reset Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="DetypedInvocationStatistics.maxConcurrentCalls" measurementType="dynamic" displayType="detail" displayName="Max Concurrent Calls" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="EjbModule.callByValue" measurementType="dynamic" displayType="detail" displayName="Call By Value" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="EjbModule.name" displayType="detail" displayName="Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="EjbModule.state" measurementType="dynamic" displayType="detail" displayName="State" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="EjbModule.stateString" displayType="detail" displayName="State String" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="EnvContext.nameInNamespace" displayType="detail" displayName="Name In Namespace" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="Name" displayType="summary" displayName="Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="RemoveCount" measurementType="dynamic" displayType="detail" displayName="Remove Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="State" measurementType="dynamic" displayType="detail" displayName="State" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="StateString" displayType="summary" displayName="State String" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ </service>
+ <service name="StatelessSession EJB">
+ <operation name="create" displayName="Create"/>
+ <operation name="destroy" displayName="Destroy"/>
+ <operation name="getTimerService" displayName="Get Timer Service">
+ <parameters>
+ <c:map-property required="false" name="p1" description=""/>
+ </parameters>
+ <results>
+ <c:notes>getTimerService</c:notes>
+ <c:map-property required="false" name="result">
+ <c:list-property name="timers">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </c:map-property>
+ </results>
+ </operation>
+ <operation name="invoke" displayName="Invoke">
+ <parameters>
+ <c:map-property required="false" name="p1" description="">
+ <c:list-property name="arguments">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ <c:map-property required="false" name="asIsPayload">
+ <c:map-property required="false" name="key"/>
+ </c:map-property>
+ <c:simple-property type="boolean" required="false" name="interVM"/>
+ <c:simple-property type="boolean" required="false" name="local"/>
+ <c:map-property required="false" name="payload">
+ <c:map-property required="false" name="key"/>
+ </c:map-property>
+ <c:simple-property type="boolean" required="false" name="secure"/>
+ <c:map-property required="false" name="transientPayload">
+ <c:map-property required="false" name="key"/>
+ </c:map-property>
+ </c:map-property>
+ </parameters>
+ <results>
+ <c:notes>invoke</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="jbossInternalLifecycle" displayName="Jboss Internal Lifecycle">
+ <parameters>
+ <c:simple-property required="false" name="p1" description=""/>
+ </parameters>
+ </operation>
+ <operation name="removeTimerService" displayName="Remove Timer Service">
+ <parameters>
+ <c:map-property required="false" name="p1" description=""/>
+ </parameters>
+ </operation>
+ <operation name="resetInvocationStats" displayName="Reset Invocation Stats"/>
+ <operation name="start" displayName="Start"/>
+ <operation name="stop" displayName="Stop"/>
+ <metric property="BeanMetaData.beanManagedTx" measurementType="dynamic" displayType="detail" displayName="Bean Managed Tx" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.callByValue" measurementType="dynamic" displayType="detail" displayName="Call By Value" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.clustered" measurementType="dynamic" displayType="detail" displayName="Clustered" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.configurationName" displayType="detail" displayName="Configuration Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.containerManagedTx" measurementType="dynamic" displayType="detail" displayName="Container Managed Tx" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.containerObjectNameJndiName" displayType="detail" displayName="Container Object Name Jndi Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.defaultConfigurationName" displayType="detail" displayName="Default Configuration Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.ejbClass" displayType="detail" displayName="Ejb Class" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.ejbName" displayType="detail" displayName="Ejb Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.entity" measurementType="dynamic" displayType="detail" displayName="Entity" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.exceptionRollback" measurementType="dynamic" displayType="detail" displayName="Exception Rollback" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.excludeMissingMethods" measurementType="dynamic" displayType="detail" displayName="Exclude Missing Methods" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.home" displayType="detail" displayName="Home" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.jndiName" displayType="detail" displayName="Jndi Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.local" displayType="detail" displayName="Local" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.localHome" displayType="detail" displayName="Local Home" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.localJndiName" displayType="detail" displayName="Local Jndi Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.messageDriven" measurementType="dynamic" displayType="detail" displayName="Message Driven" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.remote" displayType="detail" displayName="Remote" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.securityProxy" displayType="detail" displayName="Security Proxy" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.serviceEndpoint" displayType="detail" displayName="Service Endpoint" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="BeanMetaData.session" measurementType="dynamic" displayType="detail" displayName="Session" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanMetaData.timerPersistence" measurementType="dynamic" displayType="detail" displayName="Timer Persistence" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="BeanTypeName" displayType="summary" displayName="Bean Type Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="CreateCount" measurementType="dynamic" displayType="detail" displayName="Create Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="DeploymentName" displayType="summary" displayName="Deployment Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="DetypedInvocationStatistics.concurrentCalls" measurementType="dynamic" displayType="detail" displayName="Concurrent Calls" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="DetypedInvocationStatistics.lastResetTime" measurementType="dynamic" displayType="detail" displayName="Last Reset Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="DetypedInvocationStatistics.maxConcurrentCalls" measurementType="dynamic" displayType="detail" displayName="Max Concurrent Calls" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="EjbModule.callByValue" measurementType="dynamic" displayType="detail" displayName="Call By Value" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="EjbModule.name" displayType="detail" displayName="Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="EjbModule.state" measurementType="dynamic" displayType="detail" displayName="State" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="EjbModule.stateString" displayType="detail" displayName="State String" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="EnvContext.nameInNamespace" displayType="detail" displayName="Name In Namespace" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="Name" displayType="summary" displayName="Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="RemoveCount" measurementType="dynamic" displayType="detail" displayName="Remove Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="State" measurementType="dynamic" displayType="detail" displayName="State" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="StateString" displayType="summary" displayName="State String" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ </service>
+ <service name="SLSB EJB3">
+ <operation name="resetStats" displayName="Reset Stats" description=""/>
+ <metric property="lastResetTime" measurementType="dynamic" displayType="detail" displayName="Last Reset Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ </service>
+ <service name="Queue JMSDestination">
+ <operation name="create" displayName="Create" description="Service lifecycle operation"/>
+ <operation name="destroy" displayName="Destroy" description="Service lifecycle operation"/>
+ <operation name="listAllMessages" displayName="List All Messages" description="List all messages with selector">
+ <parameters>
+ <c:simple-property required="false" name="arg#0"/>
+ </parameters>
+ <results>
+ <c:notes>List all messages with selector</c:notes>
+ <c:list-property name="result">
+ <c:map-property required="false" name="element">
+ <c:simple-property required="false" name="JMSCorrelationID"/>
+ <c:simple-property required="false" name="JMSMessageID"/>
+ <c:simple-property type="long" required="false" name="JMSTimestamp"/>
+ </c:map-property>
+ </c:list-property>
+ </results>
+ </operation>
+ <operation name="listDurableMessages" displayName="List Durable Messages" description="List all durable mesages using a selector">
+ <parameters>
+ <c:simple-property required="false" name="arg#0"/>
+ </parameters>
+ <results>
+ <c:notes>List all durable mesages using a selector</c:notes>
+ <c:list-property name="result">
+ <c:map-property required="false" name="element">
+ <c:simple-property required="false" name="JMSCorrelationID"/>
+ <c:simple-property required="false" name="JMSMessageID"/>
+ <c:simple-property type="long" required="false" name="JMSTimestamp"/>
+ </c:map-property>
+ </c:list-property>
+ </results>
+ </operation>
+ <operation name="listMessageCounterAsHTML" displayName="List Message Counter As HTML" description="Get the message counter as HTML">
+ <results>
+ <c:notes>Get the message counter as HTML</c:notes>
+ <c:simple-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="listMessageCounterHistoryAsHTML" displayName="List Message Counter History As HTML" description="Get the message counter history as HTML">
+ <results>
+ <c:notes>Get the message counter history as HTML</c:notes>
+ <c:simple-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="listNonDurableMessages" displayName="List Non Durable Messages" description="List all non durable mesages using a selector">
+ <parameters>
+ <c:simple-property required="false" name="arg#0"/>
+ </parameters>
+ <results>
+ <c:notes>List all non durable mesages using a selector</c:notes>
+ <c:list-property name="result">
+ <c:map-property required="false" name="element">
+ <c:simple-property required="false" name="JMSCorrelationID"/>
+ <c:simple-property required="false" name="JMSMessageID"/>
+ <c:simple-property type="long" required="false" name="JMSTimestamp"/>
+ </c:map-property>
+ </c:list-property>
+ </results>
+ </operation>
+ <operation name="removeAllMessages" displayName="Remove All Messages" description="Remove all messages in the queue"/>
+ <operation name="resetMessageCounter" displayName="Reset Message Counter" description="Reset the message counter"/>
+ <operation name="resetMessageCounterHistory" displayName="Reset Message Counter History" description="Reset the message counter history"/>
+ <operation name="start" displayName="Start" description="Service lifecycle operation"/>
+ <operation name="stop" displayName="Stop" description="Service lifecycle operation"/>
+ <metric property="consumerCount" measurementType="dynamic" displayType="detail" displayName="Consumer Count" description="The number of consumers on the queue" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="createdProgrammatically" displayType="summary" displayName="Created Programmatically" description="True if this destination was created programmatically" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="deliveringCount" measurementType="dynamic" displayType="detail" displayName="Delivering Count" description="The number of messages currently being delivered" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageCount" measurementType="dynamic" displayType="detail" displayName="Message Count" description="The number of messages in the queue" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageCounter.count" measurementType="dynamic" displayType="detail" displayName="Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageCounter.countDelta" measurementType="dynamic" displayType="detail" displayName="Count Delta" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageCounter.counterAsString" displayType="detail" displayName="Counter As String" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="messageCounter.destinationDurable" measurementType="dynamic" displayType="detail" displayName="Destination Durable" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageCounter.destinationName" displayType="detail" displayName="Destination Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="messageCounter.destinationSubscription" displayType="detail" displayName="Destination Subscription" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="messageCounter.destinationTopic" measurementType="dynamic" displayType="detail" displayName="Destination Topic" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageCounter.historyAsString" displayType="detail" displayName="History As String" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="messageCounter.historyLimit" measurementType="dynamic" displayType="detail" displayName="History Limit" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageCounter.lastUpdate" measurementType="dynamic" displayType="detail" displayName="Last Update" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageCounter.messageCount" measurementType="dynamic" displayType="detail" displayName="Message Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageCounter.messageCountDelta" measurementType="dynamic" displayType="detail" displayName="Message Count Delta" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageStatistics.asString" displayType="detail" displayName="As String" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="messageStatistics.count" measurementType="dynamic" displayType="detail" displayName="Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageStatistics.countDelta" measurementType="dynamic" displayType="detail" displayName="Count Delta" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageStatistics.depth" measurementType="dynamic" displayType="detail" displayName="Depth" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageStatistics.depthDelta" measurementType="dynamic" displayType="detail" displayName="Depth Delta" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageStatistics.durable" measurementType="dynamic" displayType="detail" displayName="Durable" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageStatistics.name" displayType="detail" displayName="Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="messageStatistics.subscriptionID" displayType="detail" displayName="Subscription ID" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="messageStatistics.timeLastUpdate" measurementType="dynamic" displayType="detail" displayName="Time Last Update" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageStatistics.topic" measurementType="dynamic" displayType="detail" displayName="Topic" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="scheduledMessageCount" measurementType="dynamic" displayType="detail" displayName="Scheduled Message Count" description="The number of scheduled messages in the queue" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <resource-configuration>
+ <c:simple-property required="false" name="DLQ" description="The DLQ for this queue, overrides the default DLQ on the server peer"/>
+ <c:simple-property name="JNDIName" description="The destination's JNDI name"/>
+ <c:simple-property type="boolean" required="false" readOnly="true" name="clustered" description="Is this a clustered destination?"/>
+ <c:simple-property type="integer" required="false" name="downCacheSize" description="The write-cache size, can only be set when queue is stopped"/>
+ <c:simple-property required="false" name="expiryQueue" description="The expiry queue for this queue, overrides the default expiry queue on the server peer"/>
+ <c:simple-property type="integer" required="false" name="fullSize" description="The in-memory message limit, can only be set when queue is stopped"/>
+ <c:simple-property type="integer" required="false" name="maxDeliveryAttempts" description="The maximum delivery attempts to the queue"/>
+ <c:simple-property type="integer" required="false" name="maxSize" description="The maximum number of messages this queue can hold before they are dropped"/>
+ <c:simple-property type="integer" required="false" name="messageCounterHistoryDayLimit" description="The day limit for the message counter"/>
+ <c:simple-property readOnly="true" name="name" description="The destination name"/>
+ <c:simple-property type="integer" required="false" name="pageSize" description="The paging size, can only be set when queue is stopped"/>
+ <c:simple-property type="long" required="false" name="redeliveryDelay" description="The delay before redelivering"/>
+ <c:map-property required="false" name="securityConfig" description="The destination's security configuration"/>
+ <c:simple-property required="false" name="serverPeer" description="The ObjectName of the server peer this destination was deployed on"/>
+ </resource-configuration>
+ </service>
+ <service name="Topic JMSDestination">
+ <operation name="create" displayName="Create" description="Service lifecycle operation"/>
+ <operation name="destroy" displayName="Destroy" description="Service lifecycle operation"/>
+ <operation name="listAllMessages" displayName="List All Messages" description="List all messages for the specified subscription with the specified selector">
+ <parameters>
+ <c:simple-property required="false" name="arg#0"/>
+ <c:simple-property required="false" name="arg#1"/>
+ </parameters>
+ <results>
+ <c:notes>List all messages for the specified subscription with the specified selector</c:notes>
+ <c:list-property name="result">
+ <c:map-property required="false" name="element">
+ <c:simple-property required="false" name="JMSCorrelationID"/>
+ <c:simple-property required="false" name="JMSMessageID"/>
+ <c:simple-property type="long" required="false" name="JMSTimestamp"/>
+ </c:map-property>
+ </c:list-property>
+ </results>
+ </operation>
+ <operation name="listAllSubscriptions" displayName="List All Subscriptions" description="Return all subscriptions for the topic">
+ <results>
+ <c:notes>Return all subscriptions for the topic</c:notes>
+ <c:list-property name="result">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </results>
+ </operation>
+ <operation name="listAllSubscriptionsAsHTML" displayName="List All Subscriptions As HTML" description="Return all subscriptions for the topic in HTML">
+ <results>
+ <c:notes>Return all subscriptions for the topic in HTML</c:notes>
+ <c:simple-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="listDurableMessages" displayName="List Durable Messages" description="List all durable messages for the specified subscription with the specified selector">
+ <parameters>
+ <c:simple-property required="false" name="arg#0"/>
+ <c:simple-property required="false" name="arg#1"/>
+ </parameters>
+ <results>
+ <c:notes>List all durable messages for the specified subscription with the specified selector</c:notes>
+ <c:list-property name="result">
+ <c:map-property required="false" name="element">
+ <c:simple-property required="false" name="JMSCorrelationID"/>
+ <c:simple-property required="false" name="JMSMessageID"/>
+ <c:simple-property type="long" required="false" name="JMSTimestamp"/>
+ </c:map-property>
+ </c:list-property>
+ </results>
+ </operation>
+ <operation name="listDurableSubscriptions" displayName="List Durable Subscriptions" description="Return all durable subscriptions for the topic">
+ <results>
+ <c:notes>Return all durable subscriptions for the topic</c:notes>
+ <c:list-property name="result">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </results>
+ </operation>
+ <operation name="listDurableSubscriptionsAsHTML" displayName="List Durable Subscriptions As HTML" description="Return all durable subscriptions for the topic in HTML">
+ <results>
+ <c:notes>Return all durable subscriptions for the topic in HTML</c:notes>
+ <c:simple-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="listNonDurableMessages" displayName="List Non Durable Messages" description="List all non durable messages for the specified subscription with the specified selector">
+ <parameters>
+ <c:simple-property required="false" name="arg#0"/>
+ <c:simple-property required="false" name="arg#1"/>
+ </parameters>
+ <results>
+ <c:notes>List all non durable messages for the specified subscription with the specified selector</c:notes>
+ <c:list-property name="result">
+ <c:map-property required="false" name="element">
+ <c:simple-property required="false" name="JMSCorrelationID"/>
+ <c:simple-property required="false" name="JMSMessageID"/>
+ <c:simple-property type="long" required="false" name="JMSTimestamp"/>
+ </c:map-property>
+ </c:list-property>
+ </results>
+ </operation>
+ <operation name="listNonDurableSubscriptions" displayName="List Non Durable Subscriptions" description="Return all non durable subscriptions for the topic">
+ <results>
+ <c:notes>Return all non durable subscriptions for the topic</c:notes>
+ <c:list-property name="result">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </results>
+ </operation>
+ <operation name="listNonDurableSubscriptionsAsHTML" displayName="List Non Durable Subscriptions As HTML" description="Return all non durable subscriptions for the topic in HTML">
+ <results>
+ <c:notes>Return all non durable subscriptions for the topic in HTML</c:notes>
+ <c:simple-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="removeAllMessages" displayName="Remove All Messages" description="Remove all messages"/>
+ <operation name="start" displayName="Start" description="Service lifecycle operation"/>
+ <operation name="stop" displayName="Stop" description="Service lifecycle operation"/>
+ <metric property="allMessageCount" measurementType="dynamic" displayType="detail" displayName="All Message Count" description="The count of all messages in all subscriptions of this topic" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="allSubscriptionsCount" measurementType="dynamic" displayType="detail" displayName="All Subscriptions Count" description="The count of all subscriptions of this topic" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="createdProgrammatically" displayType="summary" displayName="Created Programmatically" description="True if this destination was created programmatically" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="durableMessageCount" measurementType="dynamic" displayType="detail" displayName="Durable Message Count" description="The count of all messages in all durable subscriptions of this topic" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="durableSubscriptionsCount" measurementType="dynamic" displayType="detail" displayName="Durable Subscriptions Count" description="The count of all durable subscriptions of this topic" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="messageCounterHistoryDayLimit" measurementType="dynamic" displayType="detail" displayName="Message Counter History Day Limit" description="The day limit for the message counter" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="nonDurableMessageCount" measurementType="dynamic" displayType="detail" displayName="Non Durable Message Count" description="The count of all messages in all non durable subscriptions of this topic" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="nonDurableSubscriptionsCount" measurementType="dynamic" displayType="detail" displayName="Non Durable Subscriptions Count" description="The count of all non durable subscriptions of this topic" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <resource-configuration>
+ <c:simple-property required="false" name="DLQ" description="The DLQ for this topic, overrides the default DLQ on the server peer"/>
+ <c:simple-property name="JNDIName" description="The destination's JNDI name"/>
+ <c:simple-property type="boolean" required="false" readOnly="true" name="clustered" description="Is this a clustered destination?"/>
+ <c:simple-property type="boolean" required="false" readOnly="true" name="createdProgrammatically" description="True if this destination was created programmatically"/>
+ <c:simple-property type="integer" required="false" name="downCacheSize" description="The write-cache size, can only be set when topic is stopped"/>
+ <c:simple-property required="false" name="expiryQueue" description="The expiry queue for this topic, overrides the default expiry queue on the server peer"/>
+ <c:simple-property type="integer" required="false" name="fullSize" description="The in-memory message limit, can only be set when topic is stopped"/>
+ <c:simple-property type="integer" required="false" name="maxDeliveryAttempts" description="The maximum delivery attempts to the topic"/>
+ <c:simple-property type="integer" required="false" name="maxSize" description="The maximum number of messages this topic can hold before they are dropped"/>
+ <c:simple-property readOnly="true" name="name" description="The destination name"/>
+ <c:simple-property type="integer" required="false" name="pageSize" description="The paging size, can only be set when topic is stopped"/>
+ <c:simple-property type="long" required="false" name="redeliveryDelay" description="The delay before redelivering"/>
+ <c:map-property required="false" name="securityConfig" description="The destination's security configuration"/>
+ <c:simple-property required="false" name="serverPeer" description="The ObjectName of the server peer this destination was deployed on"/>
+ </resource-configuration>
+ </service>
+ <service name="Platform MBean">
+ <operation name="gc" displayName="Gc" description="Runs the garbage collector"/>
+ <resource-configuration>
+ <c:map-property required="false" readOnly="true" name="heapMemoryUsage" description="object representing the heap memory usage.">
+ <c:simple-property type="long" required="false" name="committed"/>
+ <c:simple-property type="long" required="false" name="init"/>
+ <c:simple-property type="long" required="false" name="max"/>
+ <c:simple-property type="long" required="false" name="used"/>
+ </c:map-property>
+ <c:map-property required="false" readOnly="true" name="nonHeapMemoryUsage" description="object representing the non-heap memory usage.">
+ <c:simple-property type="long" required="false" name="committed"/>
+ <c:simple-property type="long" required="false" name="init"/>
+ <c:simple-property type="long" required="false" name="max"/>
+ <c:simple-property type="long" required="false" name="used"/>
+ </c:map-property>
+ <c:simple-property type="integer" required="false" readOnly="true" name="objectPendingFinalizationCount" description="the approximate number objects for which finalization is pending."/>
+ <c:simple-property type="boolean" required="false" name="verbose" description="the verbose output flag for the memory system."/>
+ </resource-configuration>
+ </service>
+ <service name="Servlet MBean">
+ <operation name="findMappingObject" displayName="Find Mapping Object">
+ <results>
+ <c:notes>findMappingObject</c:notes>
+ <c:map-property required="false" name="result">
+ <c:simple-property type="long" required="false" name="available"/>
+ <c:simple-property required="false" name="jspFile"/>
+ <c:simple-property type="integer" required="false" name="loadOnStartup"/>
+ <c:simple-property required="false" name="runAs"/>
+ <c:simple-property required="false" name="servletClass"/>
+ <c:list-property name="servletMethods">
+ <c:simple-property required="false" name="element"/>
+ </c:list-property>
+ <c:simple-property type="boolean" required="false" name="unavailable"/>
+ </c:map-property>
+ </results>
+ </operation>
+ <operation name="findMappings" displayName="Find Mappings">
+ <results>
+ <c:notes>findMappings</c:notes>
+ <c:list-property name="result">
+ <c:simple-property required="false" name="element"/>
+ </c:list-property>
+ </results>
+ </operation>
+ <metric property="classLoadTime" measurementType="dynamic" displayType="detail" displayName="Class Load Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="engineName" displayType="summary" displayName="Engine Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="errorCount" measurementType="dynamic" displayType="detail" displayName="Error Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="eventProvider" displayType="summary" displayName="Event Provider" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="loadTime" measurementType="dynamic" displayType="detail" displayName="Load Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="maxTime" measurementType="dynamic" displayType="detail" displayName="Max Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="minTime" measurementType="dynamic" displayType="detail" displayName="Min Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="modelerType" displayType="summary" displayName="Modeler Type" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="objectName" displayType="summary" displayName="Object Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="processingTime" measurementType="dynamic" displayType="detail" displayName="Processing Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="requestCount" measurementType="dynamic" displayType="detail" displayName="Request Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="stateManageable" displayType="summary" displayName="State Manageable" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="statisticsProvider" displayType="summary" displayName="Statistics Provider" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ </service>
+ <service name="Web MBean">
+ <resource-configuration>
+ <c:list-property required="false" readOnly="true" name="aliases" description="The Host aliases">
+ <c:simple-property required="false" name="element"/>
+ </c:list-property>
+ <c:simple-property required="false" readOnly="true" name="mbeanNameAsString"/>
+ <c:simple-property required="false" name="state" description="The bean controller state"/>
+ <c:simple-property type="boolean" required="false" readOnly="true" name="unpackWARs" description="Unpack WARs property"/>
+ <c:list-property required="false" readOnly="true" name="valveNames" description="The MBean Names of the Valves associated with this Host">
+ <c:simple-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="WebApplication MBean">
+ <operation name="addLifecycleListener" displayName="Add Lifecycle Listener">
+ <parameters>
+ <c:map-property required="false" name="listener" description="New lifecycle listener to be added"/>
+ </parameters>
+ </operation>
+ <operation name="addValve" displayName="Add Valve">
+ <parameters>
+ <c:map-property required="false" name="valve" description="New valve to be added">
+ <c:simple-property required="false" name="info"/>
+ </c:map-property>
+ </parameters>
+ </operation>
+ <operation name="destroy" displayName="Destroy"/>
+ <operation name="findMappingObject" displayName="Find Mapping Object">
+ <results>
+ <c:notes>findMappingObject</c:notes>
+ <c:map-property required="false" name="result">
+ <c:simple-property required="false" name="altDDName"/>
+ <c:list-property name="applicationEventListeners">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ <c:list-property name="applicationLifecycleListeners">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ <c:simple-property type="boolean" required="false" name="available"/>
+ <c:simple-property required="false" name="configFile"/>
+ <c:simple-property type="boolean" required="false" name="configured"/>
+ <c:simple-property type="boolean" required="false" name="cookies"/>
+ <c:simple-property type="boolean" required="false" name="crossContext"/>
+ <c:simple-property required="false" name="displayName"/>
+ <c:simple-property type="boolean" required="false" name="distributable"/>
+ <c:simple-property required="false" name="docBase"/>
+ <c:simple-property required="false" name="encodedPath"/>
+ <c:simple-property type="boolean" required="false" name="ignoreAnnotations"/>
+ <c:simple-property type="boolean" required="false" name="override"/>
+ <c:simple-property required="false" name="path"/>
+ <c:simple-property type="boolean" required="false" name="privileged"/>
+ <c:simple-property required="false" name="publicId"/>
+ <c:simple-property type="boolean" required="false" name="reloadable"/>
+ <c:simple-property type="integer" required="false" name="sessionTimeout"/>
+ <c:simple-property type="boolean" required="false" name="swallowOutput"/>
+ <c:simple-property type="boolean" required="false" name="tldNamespaceAware"/>
+ <c:simple-property type="boolean" required="false" name="tldValidation"/>
+ <c:simple-property required="false" name="wrapperClass"/>
+ <c:simple-property type="boolean" required="false" name="xmlNamespaceAware"/>
+ <c:simple-property type="boolean" required="false" name="xmlValidation"/>
+ </c:map-property>
+ </results>
+ </operation>
+ <operation name="findStaticResources" displayName="Find Static Resources">
+ <results>
+ <c:notes>findStaticResources</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="init" displayName="Init"/>
+ <operation name="reload" displayName="Reload"/>
+ <operation name="removeLifecycleListener" displayName="Remove Lifecycle Listener">
+ <parameters>
+ <c:map-property required="false" name="listener" description="New lifecycle listener to be removed"/>
+ </parameters>
+ </operation>
+ <operation name="removeValve" displayName="Remove Valve">
+ <parameters>
+ <c:map-property required="false" name="valve" description="New valve to be removed">
+ <c:simple-property required="false" name="info"/>
+ </c:map-property>
+ </parameters>
+ </operation>
+ <operation name="start" displayName="Start"/>
+ <operation name="stop" displayName="Stop"/>
+ <metric property="allowLinking" displayType="summary" displayName="Allow Linking" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="antiJARLocking" displayType="summary" displayName="Anti JAR Locking" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="antiResourceLocking" displayType="summary" displayName="Anti Resource Locking" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="cacheMaxSize" measurementType="dynamic" displayType="detail" displayName="Cache Max Size" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="cacheObjectMaxSize" measurementType="dynamic" displayType="detail" displayName="Cache Object Max Size" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="cacheTTL" measurementType="dynamic" displayType="detail" displayName="Cache TTL" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="cachingAllowed" displayType="summary" displayName="Caching Allowed" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="caseSensitive" displayType="summary" displayName="Case Sensitive" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="compilerClasspath" displayType="summary" displayName="Compiler Classpath" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="configFile" displayType="summary" displayName="Config File" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="cookies" displayType="summary" displayName="Cookies" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="crossContext" displayType="summary" displayName="Cross Context" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="defaultContextXml" displayType="summary" displayName="Default Context Xml" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="defaultWebXml" displayType="summary" displayName="Default Web Xml" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="delegate" displayType="summary" displayName="Delegate" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="deploymentDescriptor" displayType="summary" displayName="Deployment Descriptor" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="docBase" displayType="summary" displayName="Doc Base" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="engineName" displayType="summary" displayName="Engine Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="eventProvider" displayType="summary" displayName="Event Provider" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="loader.delegate" measurementType="dynamic" displayType="detail" displayName="Delegate" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="loader.info" displayType="detail" displayName="Info" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="loader.reloadable" measurementType="dynamic" displayType="detail" displayName="Reloadable" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="logger.debugEnabled" measurementType="dynamic" displayType="detail" displayName="Debug Enabled" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="logger.errorEnabled" measurementType="dynamic" displayType="detail" displayName="Error Enabled" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="logger.fatalEnabled" measurementType="dynamic" displayType="detail" displayName="Fatal Enabled" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="logger.infoEnabled" measurementType="dynamic" displayType="detail" displayName="Info Enabled" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="logger.traceEnabled" measurementType="dynamic" displayType="detail" displayName="Trace Enabled" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="logger.warnEnabled" measurementType="dynamic" displayType="detail" displayName="Warn Enabled" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="manager.activeSessions" measurementType="dynamic" displayType="detail" displayName="Active Sessions" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="manager.distributable" measurementType="dynamic" displayType="detail" displayName="Distributable" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="manager.expiredSessions" measurementType="dynamic" displayType="detail" displayName="Expired Sessions" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="manager.info" displayType="detail" displayName="Info" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="manager.maxActive" measurementType="dynamic" displayType="detail" displayName="Max Active" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="manager.maxInactiveInterval" measurementType="dynamic" displayType="detail" displayName="Max Inactive Interval" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="manager.rejectedSessions" measurementType="dynamic" displayType="detail" displayName="Rejected Sessions" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="manager.sessionAverageAliveTime" measurementType="dynamic" displayType="detail" displayName="Session Average Alive Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="manager.sessionCounter" measurementType="dynamic" displayType="detail" displayName="Session Counter" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="manager.sessionIdLength" measurementType="dynamic" displayType="detail" displayName="Session Id Length" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="manager.sessionMaxAliveTime" measurementType="dynamic" displayType="detail" displayName="Session Max Alive Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="modelerType" displayType="summary" displayName="Modeler Type" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="namingContextListener.name" displayType="detail" displayName="Name" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="objectName" displayType="summary" displayName="Object Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="override" displayType="summary" displayName="Override" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="parentClassLoader.defaultAssertionStatus" measurementType="dynamic" displayType="detail" displayName="Default Assertion Status" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="path" displayType="summary" displayName="Path" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="privileged" displayType="summary" displayName="Privileged" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="processingTime" measurementType="dynamic" displayType="detail" displayName="Processing Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="realm.info" displayType="detail" displayName="Info" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="reloadable" displayType="summary" displayName="Reloadable" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="saveConfig" displayType="summary" displayName="Save Config" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="server" displayType="summary" displayName="Server" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="startTime" measurementType="dynamic" displayType="detail" displayName="Start Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="startupTime" measurementType="dynamic" displayType="detail" displayName="Startup Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="state" measurementType="dynamic" displayType="detail" displayName="State" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="stateManageable" displayType="summary" displayName="State Manageable" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="statisticsProvider" displayType="summary" displayName="Statistics Provider" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="swallowOutput" displayType="summary" displayName="Swallow Output" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="tldScanTime" measurementType="dynamic" displayType="detail" displayName="Tld Scan Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="unloadDelay" measurementType="dynamic" displayType="detail" displayName="Unload Delay" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="useNaming" displayType="summary" displayName="Use Naming" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="workDir" displayType="summary" displayName="Work Dir" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ </service>
+ <service name="WebApplicationManager MBean">
+ <operation name="expireSession" displayName="Expire Session">
+ <parameters>
+ <c:simple-property required="false" name="sessionId" description="Id of the session"/>
+ </parameters>
+ </operation>
+ <operation name="getCreationTime" displayName="Get Creation Time">
+ <parameters>
+ <c:simple-property required="false" name="sessionId" description="Id of the session"/>
+ </parameters>
+ <results>
+ <c:notes>getCreationTime</c:notes>
+ <c:simple-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="getLastAccessedTime" displayName="Get Last Accessed Time">
+ <parameters>
+ <c:simple-property required="false" name="sessionId" description="Id of the session"/>
+ </parameters>
+ <results>
+ <c:notes>getLastAccessedTime</c:notes>
+ <c:simple-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="getSessionAttribute" displayName="Get Session Attribute">
+ <parameters>
+ <c:simple-property required="false" name="sessionId" description="Id of the session"/>
+ <c:simple-property required="false" name="key" description="key of the attribute"/>
+ </parameters>
+ <results>
+ <c:notes>getSessionAttribute</c:notes>
+ <c:simple-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="listSessionIds" displayName="List Session Ids">
+ <results>
+ <c:notes>listSessionIds</c:notes>
+ <c:simple-property required="false" name="result"/>
+ </results>
+ </operation>
+ <metric property="activeSessions" measurementType="dynamic" displayType="detail" displayName="Active Sessions" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="algorithm" displayType="summary" displayName="Algorithm" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="className" displayType="summary" displayName="Class Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="distributable" displayType="summary" displayName="Distributable" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="duplicates" measurementType="dynamic" displayType="detail" displayName="Duplicates" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="entropy" displayType="summary" displayName="Entropy" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="expiredSessions" measurementType="dynamic" displayType="detail" displayName="Expired Sessions" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="maxActive" measurementType="dynamic" displayType="detail" displayName="Max Active" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="maxActiveSessions" measurementType="dynamic" displayType="detail" displayName="Max Active Sessions" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="maxInactiveInterval" measurementType="dynamic" displayType="detail" displayName="Max Inactive Interval" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="modelerType" displayType="summary" displayName="Modeler Type" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="name" displayType="summary" displayName="Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="pathname" displayType="summary" displayName="Pathname" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="processExpiresFrequency" measurementType="dynamic" displayType="detail" displayName="Process Expires Frequency" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="processingTime" measurementType="dynamic" displayType="detail" displayName="Processing Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="randomFile" displayType="summary" displayName="Random File" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="rejectedSessions" measurementType="dynamic" displayType="detail" displayName="Rejected Sessions" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="sessionAverageAliveTime" measurementType="dynamic" displayType="detail" displayName="Session Average Alive Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="sessionCounter" measurementType="dynamic" displayType="detail" displayName="Session Counter" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="sessionIdLength" measurementType="dynamic" displayType="detail" displayName="Session Id Length" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="sessionMaxAliveTime" measurementType="dynamic" displayType="detail" displayName="Session Max Alive Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ </service>
+ <service name="WebHost MBean">
+ <operation name="addAlias" displayName="Add Alias">
+ <parameters>
+ <c:simple-property required="false" name="alias" description="The alias to be added"/>
+ </parameters>
+ </operation>
+ <operation name="addChild" displayName="Add Child">
+ <parameters>
+ <c:map-property required="false" name="child" description="Context to be added">
+ <c:simple-property type="integer" required="false" name="backgroundProcessorDelay"/>
+ <c:simple-property required="false" name="info"/>
+ <c:simple-property required="false" name="name"/>
+ <c:simple-property required="false" name="objectName"/>
+ <c:simple-property type="boolean" required="false" name="started"/>
+ </c:map-property>
+ </parameters>
+ </operation>
+ <operation name="destroy" displayName="Destroy"/>
+ <operation name="findAliases" displayName="Find Aliases">
+ <results>
+ <c:notes>findAliases</c:notes>
+ <c:list-property name="result">
+ <c:simple-property required="false" name="element"/>
+ </c:list-property>
+ </results>
+ </operation>
+ <operation name="init" displayName="Init"/>
+ <operation name="removeAlias" displayName="Remove Alias">
+ <parameters>
+ <c:simple-property required="false" name="alias" description="Alias name to be removed"/>
+ </parameters>
+ </operation>
+ <operation name="start" displayName="Start"/>
+ <operation name="stop" displayName="Stop"/>
+ <metric property="appBase" displayType="summary" displayName="App Base" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="autoDeploy" displayType="summary" displayName="Auto Deploy" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="configClass" displayType="summary" displayName="Config Class" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="deployOnStartup" displayType="summary" displayName="Deploy On Startup" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="deployXML" displayType="summary" displayName="Deploy XML" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="modelerType" displayType="summary" displayName="Modeler Type" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="name" displayType="summary" displayName="Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="realm.info" displayType="detail" displayName="Info" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="unpackWARs" displayType="summary" displayName="Unpack WA Rs" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="xmlNamespaceAware" displayType="summary" displayName="Xml Namespace Aware" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="xmlValidation" displayType="summary" displayName="Xml Validation" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ </service>
+ <service name="WebRequestProcessor MBean">
+ <operation name="resetCounters" displayName="Reset Counters"/>
+ <metric property="bytesReceived" measurementType="dynamic" displayType="detail" displayName="Bytes Received" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="bytesSent" measurementType="dynamic" displayType="detail" displayName="Bytes Sent" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="errorCount" measurementType="dynamic" displayType="detail" displayName="Error Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="maxTime" measurementType="dynamic" displayType="detail" displayName="Max Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="modelerType" displayType="summary" displayName="Modeler Type" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="processingTime" measurementType="dynamic" displayType="detail" displayName="Processing Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="requestCount" measurementType="dynamic" displayType="detail" displayName="Request Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ </service>
+ <service name="WebThreadPool MBean">
+ <operation name="destroy" displayName="Destroy"/>
+ <operation name="init" displayName="Init"/>
+ <operation name="pause" displayName="Pause"/>
+ <operation name="resume" displayName="Resume"/>
+ <operation name="start" displayName="Start"/>
+ <operation name="stop" displayName="Stop"/>
+ <metric property="acceptorThreadCount" measurementType="dynamic" displayType="detail" displayName="Acceptor Thread Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="backlog" measurementType="dynamic" displayType="detail" displayName="Backlog" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="currentThreadCount" measurementType="dynamic" displayType="detail" displayName="Current Thread Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="currentThreadsBusy" measurementType="dynamic" displayType="detail" displayName="Current Threads Busy" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="daemon" displayType="summary" displayName="Daemon" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="maxThreads" measurementType="dynamic" displayType="detail" displayName="Max Threads" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="modelerType" displayType="summary" displayName="Modeler Type" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="name" displayType="summary" displayName="Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="paused" displayType="summary" displayName="Paused" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="port" measurementType="dynamic" displayType="detail" displayName="Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="running" displayType="summary" displayName="Running" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="soLinger" measurementType="dynamic" displayType="detail" displayName="So Linger" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="soTimeout" measurementType="dynamic" displayType="detail" displayName="So Timeout" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="tcpNoDelay" displayType="summary" displayName="Tcp No Delay" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="threadPriority" measurementType="dynamic" displayType="detail" displayName="Thread Priority" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ </service>
+ <service name="bootstrap-classloader:0.0.0 MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ManagementView MCBean">
+ <resource-configuration>
+ <c:simple-property required="false" name="state" description="The bean controller state"/>
+ </resource-configuration>
+ </service>
+ <service name="jmx-classloader:0.0.0 MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="DeclaredStructure MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="BeanMetaDataICF MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ClassLoadingDefaultDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="DefaultDeploymentRepositoryFactory MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="JMXStartStopAdvice$AspectBinding MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ProfileService MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="bootstrap-classloader:0.0.0$MODULE MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ClassLoaderSystem MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="aop-classloader:0.0.0$MODULE MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="StructuralDeployers MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="jmx-classloader:0.0.0$MODULE MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="profile-classloader:0.0.0$MODULE MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ProfileServiceDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="deployers-classloader:0.0.0 MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="FileStructure MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="BeanMetaDataDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ServiceClassLoaderDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ManagedObjectCreator MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="AOPClassLoaderScopingPolicy MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="JMXKernel MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="KernelDeploymentComponentMapper MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="AspectManager MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="StructureModCache MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="MetaDataStructureModificationChecker MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ProfileFactory MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ComponentMapperRegistry MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="BeanDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="KernelDeploymentDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="MainDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="JMXRegistrationAdvice$AspectBinding MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="PersistenceFactory MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ServiceDeploymentDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="InMemoryClassesDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ManagedDeploymentCreator MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ModificationTypeStructureProcessor MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="StructureModificationChecker MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ClassLoading MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="BootstrapProfileFactory MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ProfileServicePersistenceDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="deployers-classloader:0.0.0$MODULE MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="JARStructureCandidates MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="AspectManagerJMXRegistrar MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="KernelDeploymentManagedObjectCreator MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="AOPClassLoaderDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="StructureBuilder MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="DefaultProfileKey MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="JARStructure MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="profile-classloader:0.0.0 MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="DeploymentFilter MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="JMXCreateDestroyAdvice$AspectBinding MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ClassLoaderDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="JARFilter MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="MetaDataStructureModificationChecker$filter#1 MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ProfileRepositoryFactory MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="JMXCreateDestroyAdvice MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="AOPXMLMetaDataParserDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="AOPJBossIntegration MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="JMXRegistrationAdvice MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="AOPRegisterModuleCallback MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="AOPClassPoolFactory MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ProfileServiceBootstrap MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ServiceDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="JMXStartStopAdvice MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="WebVisitorAttributes MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="aop-classloader:0.0.0 MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="SynchAdapter MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ServiceDeploymentComponentMapper MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="AOPDeploymentAopMetaDataDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ClassLoadingMetaDataParser MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="FilteredProfileFactory MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ClassLoaderDescribeDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="BeansDeploymentAopMetaDataDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="SARDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="AttachmentStore MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="AOPAnnotationMetaDataParserDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ClassLoaderClassPathDeployer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="DefaultAspectManager MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ServiceMetaDataICF MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="AttachmentsSerializer MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="BasicProfileFactory MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="Deployers MCBean">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="JTA MCBean">
+ <resource-configuration>
+ <c:map-property required="false" readOnly="true" name="XATerminator"/>
+ <c:simple-property type="long" required="false" readOnly="true" name="applicationRollbackCount"/>
+ <c:simple-property type="long" required="false" readOnly="true" name="commitCount"/>
+ <c:simple-property type="long" required="false" readOnly="true" name="heuristicCount"/>
+ <c:simple-property type="long" required="false" readOnly="true" name="nestedTransactonCount"/>
+ <c:simple-property required="false" name="objectStoreDir"/>
+ <c:simple-property type="boolean" required="false" name="propagateFullContext"/>
+ <c:map-property required="false" name="recoveryInetAddress">
+ <c:simple-property type="boolean" required="false" name="MCGlobal"/>
+ <c:simple-property type="boolean" required="false" name="MCLinkLocal"/>
+ <c:simple-property type="boolean" required="false" name="MCNodeLocal"/>
+ <c:simple-property type="boolean" required="false" name="MCOrgLocal"/>
+ <c:simple-property type="boolean" required="false" name="MCSiteLocal"/>
+ <c:list-property name="address">
+ <c:simple-property required="false" name="element"/>
+ </c:list-property>
+ <c:simple-property type="boolean" required="false" name="anyLocalAddress"/>
+ <c:simple-property required="false" name="canonicalHostName"/>
+ <c:simple-property required="false" name="hostAddress"/>
+ <c:simple-property required="false" name="hostName"/>
+ <c:simple-property type="boolean" required="false" name="linkLocalAddress"/>
+ <c:simple-property type="boolean" required="false" name="loopbackAddress"/>
+ <c:simple-property type="boolean" required="false" name="multicastAddress"/>
+ <c:simple-property type="boolean" required="false" name="siteLocalAddress"/>
+ </c:map-property>
+ <c:simple-property type="integer" required="false" name="recoveryPort"/>
+ <c:simple-property type="long" required="false" readOnly="true" name="resourceRollbackCount"/>
+ <c:simple-property type="long" required="false" readOnly="true" name="rollbackCount"/>
+ <c:simple-property type="boolean" required="false" name="runInVMRecoveryManager"/>
+ <c:simple-property type="long" required="false" readOnly="true" name="runningTransactionCount"/>
+ <c:simple-property type="integer" required="false" name="socketProcessIdPort"/>
+ <c:simple-property required="false" name="state" description="The bean controller state"/>
+ <c:simple-property type="boolean" required="false" name="statisticsEnabled"/>
+ <c:simple-property type="long" required="false" readOnly="true" name="timedoutCount"/>
+ <c:simple-property type="long" required="false" readOnly="true" name="transactionCount"/>
+ <c:map-property required="false" readOnly="true" name="transactionManager">
+ <c:simple-property type="integer" required="false" name="status"/>
+ <c:simple-property type="integer" required="false" name="transactionTimeout"/>
+ </c:map-property>
+ <c:map-property required="false" name="transactionStatusManagerInetAddress">
+ <c:simple-property type="boolean" required="false" name="MCGlobal"/>
+ <c:simple-property type="boolean" required="false" name="MCLinkLocal"/>
+ <c:simple-property type="boolean" required="false" name="MCNodeLocal"/>
+ <c:simple-property type="boolean" required="false" name="MCOrgLocal"/>
+ <c:simple-property type="boolean" required="false" name="MCSiteLocal"/>
+ <c:list-property name="address">
+ <c:simple-property required="false" name="element"/>
+ </c:list-property>
+ <c:simple-property type="boolean" required="false" name="anyLocalAddress"/>
+ <c:simple-property required="false" name="canonicalHostName"/>
+ <c:simple-property required="false" name="hostAddress"/>
+ <c:simple-property required="false" name="hostName"/>
+ <c:simple-property type="boolean" required="false" name="linkLocalAddress"/>
+ <c:simple-property type="boolean" required="false" name="loopbackAddress"/>
+ <c:simple-property type="boolean" required="false" name="multicastAddress"/>
+ <c:simple-property type="boolean" required="false" name="siteLocalAddress"/>
+ </c:map-property>
+ <c:simple-property type="integer" required="false" name="transactionStatusManagerPort"/>
+ <c:map-property required="false" readOnly="true" name="transactionSynchronizationRegistry">
+ <c:simple-property type="boolean" required="false" name="rollbackOnly"/>
+ <c:simple-property type="integer" required="false" name="transactionStatus"/>
+ </c:map-property>
+ <c:simple-property type="integer" required="false" name="transactionTimeout"/>
+ <c:map-property required="false" readOnly="true" name="userTransaction">
+ <c:simple-property type="integer" required="false" name="status"/>
+ <c:simple-property type="integer" required="false" name="transactionTimeout"/>
+ </c:map-property>
+ </resource-configuration>
+ </service>
+ <service name="MCServer MCBean">
+ <operation name="shutdown" displayName="Shutdown" description="Shutdown the server"/>
+ <resource-configuration>
+ <c:simple-property required="false" readOnly="true" name="buildDate" description="The server build date"/>
+ <c:simple-property required="false" readOnly="true" name="buildID" description="The server build ID"/>
+ <c:simple-property required="false" readOnly="true" name="buildJVM" description="The server build JVM"/>
+ <c:simple-property required="false" readOnly="true" name="buildNumber" description="The server build number"/>
+ <c:simple-property required="false" readOnly="true" name="buildOS" description="The server build OS"/>
+ <c:map-property required="false" readOnly="true" name="config">
+ <c:map-property required="false" readOnly="true" name="libraryURL" description="the bootstrap library URL for the server.">
+ <c:simple-property required="false" name="authority"/>
+ <c:simple-property type="integer" required="false" name="defaultPort"/>
+ <c:simple-property required="false" name="file"/>
+ <c:simple-property required="false" name="host"/>
+ <c:simple-property required="false" name="path"/>
+ <c:simple-property type="integer" required="false" name="port"/>
+ <c:simple-property required="false" name="protocol"/>
+ <c:simple-property required="false" name="query"/>
+ <c:simple-property required="false" name="ref"/>
+ <c:simple-property required="false" name="userInfo"/>
+ </c:map-property>
+ <c:simple-property required="false" readOnly="true" name="serverNativeDir" description="the directory for platform native files"/>
+ <c:simple-property required="false" readOnly="true" name="homeDir" description="the local home directory which the server is running from"/>
+ <c:simple-property required="false" readOnly="true" name="serverLogDir" description="the server log directory"/>
+ <c:map-property required="false" readOnly="true" name="serverLibraryURL" description="the server home URL">
+ <c:simple-property required="false" name="authority"/>
+ <c:simple-property type="integer" required="false" name="defaultPort"/>
+ <c:simple-property required="false" name="file"/>
+ <c:simple-property required="false" name="host"/>
+ <c:simple-property required="false" name="path"/>
+ <c:simple-property type="integer" required="false" name="port"/>
+ <c:simple-property required="false" name="protocol"/>
+ <c:simple-property required="false" name="query"/>
+ <c:simple-property required="false" name="ref"/>
+ <c:simple-property required="false" name="userInfo"/>
+ </c:map-property>
+ <c:simple-property required="false" readOnly="true" name="serverHomeDir" description="the server home directory"/>
+ <c:simple-property required="false" readOnly="true" name="serverName" description="the name of the active profile the sever is using"/>
+ <c:simple-property required="false" name="rootDeploymentFilename" description="the filename of the root deployable that will be used to finalize the bootstrap process"/>
+ <c:simple-property required="false" readOnly="true" name="specificationVersion" description="the server Specification-Version"/>
+ <c:map-property required="false" readOnly="true" name="serverBaseURL" description="the base URL for calculating server home URLs">
+ <c:simple-property required="false" name="authority"/>
+ <c:simple-property type="integer" required="false" name="defaultPort"/>
+ <c:simple-property required="false" name="file"/>
+ <c:simple-property required="false" name="host"/>
+ <c:simple-property required="false" name="path"/>
+ <c:simple-property type="integer" required="false" name="port"/>
+ <c:simple-property required="false" name="protocol"/>
+ <c:simple-property required="false" name="query"/>
+ <c:simple-property required="false" name="ref"/>
+ <c:simple-property required="false" name="userInfo"/>
+ </c:map-property>
+ <c:map-property required="false" readOnly="true" name="commonBaseURL" description="the common library URL base">
+ <c:simple-property required="false" name="authority"/>
+ <c:simple-property type="integer" required="false" name="defaultPort"/>
+ <c:simple-property required="false" name="file"/>
+ <c:simple-property required="false" name="host"/>
+ <c:simple-property required="false" name="path"/>
+ <c:simple-property type="integer" required="false" name="port"/>
+ <c:simple-property required="false" name="protocol"/>
+ <c:simple-property required="false" name="query"/>
+ <c:simple-property required="false" name="ref"/>
+ <c:simple-property required="false" name="userInfo"/>
+ </c:map-property>
+ <c:map-property required="false" readOnly="true" name="commonLibraryURL" description="the URL for the common library jars">
+ <c:simple-property required="false" name="authority"/>
+ <c:simple-property type="integer" required="false" name="defaultPort"/>
+ <c:simple-property required="false" name="file"/>
+ <c:simple-property required="false" name="host"/>
+ <c:simple-property required="false" name="path"/>
+ <c:simple-property type="integer" required="false" name="port"/>
+ <c:simple-property required="false" name="protocol"/>
+ <c:simple-property required="false" name="query"/>
+ <c:simple-property required="false" name="ref"/>
+ <c:simple-property required="false" name="userInfo"/>
+ </c:map-property>
+ <c:simple-property required="false" readOnly="true" name="serverTempDeployDir" description="the temporary deployment dir"/>
+ <c:map-property required="false" readOnly="true" name="serverHomeURL" description="the server home URL">
+ <c:simple-property required="false" name="authority"/>
+ <c:simple-property type="integer" required="false" name="defaultPort"/>
+ <c:simple-property required="false" name="file"/>
+ <c:simple-property required="false" name="host"/>
+ <c:simple-property required="false" name="path"/>
+ <c:simple-property type="integer" required="false" name="port"/>
+ <c:simple-property required="false" name="protocol"/>
+ <c:simple-property required="false" name="query"/>
+ <c:simple-property required="false" name="ref"/>
+ <c:simple-property required="false" name="userInfo"/>
+ </c:map-property>
+ <c:map-property required="false" readOnly="true" name="homeURL" description="home URL which the server is running from">
+ <c:simple-property required="false" name="authority"/>
+ <c:simple-property type="integer" required="false" name="defaultPort"/>
+ <c:simple-property required="false" name="file"/>
+ <c:simple-property required="false" name="host"/>
+ <c:simple-property required="false" name="path"/>
+ <c:simple-property type="integer" required="false" name="port"/>
+ <c:simple-property required="false" name="protocol"/>
+ <c:simple-property required="false" name="query"/>
+ <c:simple-property required="false" name="ref"/>
+ <c:simple-property required="false" name="userInfo"/>
+ </c:map-property>
+ <c:simple-property required="false" readOnly="true" name="serverDataDir" description="the directory where local data will be stored"/>
+ <c:simple-property required="false" readOnly="true" name="serverBaseDir" description="the base directory for calculating server home directories"/>
+ <c:simple-property required="false" readOnly="true" name="serverTempDir" description="the directory where temporary files will be stored"/>
+ <c:map-property required="false" readOnly="true" name="bootstrapURL" description="the bootstrap url">
+ <c:simple-property required="false" name="authority"/>
+ <c:simple-property type="integer" required="false" name="defaultPort"/>
+ <c:simple-property required="false" name="file"/>
+ <c:simple-property required="false" name="host"/>
+ <c:simple-property required="false" name="path"/>
+ <c:simple-property type="integer" required="false" name="port"/>
+ <c:simple-property required="false" name="protocol"/>
+ <c:simple-property required="false" name="query"/>
+ <c:simple-property required="false" name="ref"/>
+ <c:simple-property required="false" name="userInfo"/>
+ </c:map-property>
+ <c:simple-property required="false" readOnly="true" name="partitionName" description="The name of the clustering partition"/>
+ </c:map-property>
+ <c:simple-property required="false" readOnly="true" name="startDate" description="The server start time"/>
+ <c:simple-property required="false" readOnly="true" name="version" description="The server version string"/>
+ <c:simple-property required="false" readOnly="true" name="versionName" description="The server version name"/>
+ <c:simple-property required="false" readOnly="true" name="versionNumber" description="The server version number string"/>
+ </resource-configuration>
+ </service>
+ <service name="Security MCBean">
+ <operation name="addApplicationPolicy" displayName="Add Application Policy" description="Add an application policy for the specified domain">
+ <parameters>
+ <c:simple-property required="false" name="arg#0"/>
+ <c:map-property required="false" name="arg#1">
+ <c:simple-property required="false" name="baseApplicationPolicyName"/>
+ <c:simple-property required="false" name="name"/>
+ </c:map-property>
+ </parameters>
+ </operation>
+ <operation name="displayAppConfig" displayName="Display App Config" description="Display the configuration for the specified domain">
+ <parameters>
+ <c:simple-property required="false" name="arg#0"/>
+ </parameters>
+ <results>
+ <c:notes>Display the configuration for the specified domain</c:notes>
+ <c:simple-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="getApplicationPolicy" displayName="Get Application Policy" description="Get the application policy for the specified domain">
+ <parameters>
+ <c:simple-property required="false" name="arg#0"/>
+ </parameters>
+ <results>
+ <c:notes>Get the application policy for the specified domain</c:notes>
+ <c:map-property required="false" name="result">
+ <c:simple-property required="false" name="baseApplicationPolicyName"/>
+ <c:simple-property required="false" name="name"/>
+ </c:map-property>
+ </results>
+ </operation>
+ <operation name="getConfiguration" displayName="Get Configuration" description="Get the javax.security.auth.login.Configuration instance">
+ <parameters>
+ <c:map-property required="false" name="arg#0">
+ <c:map-property required="false" name="provider">
+ <c:map-property required="false" name="key"/>
+ </c:map-property>
+ <c:simple-property required="false" name="type"/>
+ </c:map-property>
+ </parameters>
+ <results>
+ <c:notes>Get the javax.security.auth.login.Configuration instance</c:notes>
+ <c:map-property required="false" name="result">
+ <c:map-property required="false" name="provider">
+ <c:map-property required="false" name="key"/>
+ </c:map-property>
+ <c:simple-property required="false" name="type"/>
+ </c:map-property>
+ </results>
+ </operation>
+ <operation name="loadConfig" displayName="Load Config" description="Load (parse) the login config file">
+ <parameters>
+ <c:map-property required="false" name="arg#0">
+ <c:simple-property required="false" name="authority"/>
+ <c:simple-property type="integer" required="false" name="defaultPort"/>
+ <c:simple-property required="false" name="file"/>
+ <c:simple-property required="false" name="host"/>
+ <c:simple-property required="false" name="path"/>
+ <c:simple-property type="integer" required="false" name="port"/>
+ <c:simple-property required="false" name="protocol"/>
+ <c:simple-property required="false" name="query"/>
+ <c:simple-property required="false" name="ref"/>
+ <c:simple-property required="false" name="userInfo"/>
+ </c:map-property>
+ </parameters>
+ <results>
+ <c:notes>Load (parse) the login config file</c:notes>
+ <c:list-property name="result">
+ <c:simple-property required="false" name="element"/>
+ </c:list-property>
+ </results>
+ </operation>
+ <operation name="removeConfigs" displayName="Remove Configs" description="Remove the configuration of the specified domains">
+ <parameters>
+ <c:list-property name="arg#0">
+ <c:simple-property required="false" name="element"/>
+ </c:list-property>
+ </parameters>
+ </operation>
+ <operation name="setConfigResource" displayName="Set Config Resource" description="Set the resource name of the login config file">
+ <parameters>
+ <c:simple-property required="false" name="arg#0"/>
+ </parameters>
+ </operation>
+ <resource-configuration>
+ <c:map-property required="false" name="configURL" description="The URL of the login configuration file">
+ <c:simple-property required="false" name="authority"/>
+ <c:simple-property type="integer" required="false" name="defaultPort"/>
+ <c:simple-property required="false" name="file"/>
+ <c:simple-property required="false" name="host"/>
+ <c:simple-property required="false" name="path"/>
+ <c:simple-property type="integer" required="false" name="port"/>
+ <c:simple-property required="false" name="protocol"/>
+ <c:simple-property required="false" name="query"/>
+ <c:simple-property required="false" name="ref"/>
+ <c:simple-property required="false" name="userInfo"/>
+ </c:map-property>
+ <c:simple-property required="false" name="state" description="The bean controller state"/>
+ <c:simple-property type="boolean" required="false" name="validateDTD" description="Validate or not the login configuration file"/>
+ </resource-configuration>
+ </service>
+ <service name="ServerConfig MCBean">
+ <metric property="bootstrapURL.authority" displayType="detail" displayName="Authority" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="bootstrapURL.defaultPort" measurementType="dynamic" displayType="detail" displayName="Default Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="bootstrapURL.file" displayType="detail" displayName="File" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="bootstrapURL.host" displayType="detail" displayName="Host" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="bootstrapURL.path" displayType="detail" displayName="Path" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="bootstrapURL.port" measurementType="dynamic" displayType="detail" displayName="Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="bootstrapURL.protocol" displayType="detail" displayName="Protocol" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="bootstrapURL.query" displayType="detail" displayName="Query" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="bootstrapURL.ref" displayType="detail" displayName="Ref" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="bootstrapURL.userInfo" displayType="detail" displayName="User Info" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonBaseURL.authority" displayType="detail" displayName="Authority" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonBaseURL.defaultPort" measurementType="dynamic" displayType="detail" displayName="Default Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="commonBaseURL.file" displayType="detail" displayName="File" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonBaseURL.host" displayType="detail" displayName="Host" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonBaseURL.path" displayType="detail" displayName="Path" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonBaseURL.port" measurementType="dynamic" displayType="detail" displayName="Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="commonBaseURL.protocol" displayType="detail" displayName="Protocol" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonBaseURL.query" displayType="detail" displayName="Query" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonBaseURL.ref" displayType="detail" displayName="Ref" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonBaseURL.userInfo" displayType="detail" displayName="User Info" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonLibraryURL.authority" displayType="detail" displayName="Authority" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonLibraryURL.defaultPort" measurementType="dynamic" displayType="detail" displayName="Default Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="commonLibraryURL.file" displayType="detail" displayName="File" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonLibraryURL.host" displayType="detail" displayName="Host" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonLibraryURL.path" displayType="detail" displayName="Path" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonLibraryURL.port" measurementType="dynamic" displayType="detail" displayName="Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="commonLibraryURL.protocol" displayType="detail" displayName="Protocol" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonLibraryURL.query" displayType="detail" displayName="Query" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonLibraryURL.ref" displayType="detail" displayName="Ref" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="commonLibraryURL.userInfo" displayType="detail" displayName="User Info" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="homeDir" displayType="summary" displayName="Home Dir" description="the local home directory which the server is running from" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="homeURL.authority" displayType="detail" displayName="Authority" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="homeURL.defaultPort" measurementType="dynamic" displayType="detail" displayName="Default Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="homeURL.file" displayType="detail" displayName="File" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="homeURL.host" displayType="detail" displayName="Host" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="homeURL.path" displayType="detail" displayName="Path" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="homeURL.port" measurementType="dynamic" displayType="detail" displayName="Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="homeURL.protocol" displayType="detail" displayName="Protocol" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="homeURL.query" displayType="detail" displayName="Query" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="homeURL.ref" displayType="detail" displayName="Ref" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="homeURL.userInfo" displayType="detail" displayName="User Info" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="libraryURL.authority" displayType="detail" displayName="Authority" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="libraryURL.defaultPort" measurementType="dynamic" displayType="detail" displayName="Default Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="libraryURL.file" displayType="detail" displayName="File" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="libraryURL.host" displayType="detail" displayName="Host" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="libraryURL.path" displayType="detail" displayName="Path" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="libraryURL.port" measurementType="dynamic" displayType="detail" displayName="Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="libraryURL.protocol" displayType="detail" displayName="Protocol" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="libraryURL.query" displayType="detail" displayName="Query" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="libraryURL.ref" displayType="detail" displayName="Ref" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="libraryURL.userInfo" displayType="detail" displayName="User Info" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="rootDeploymentFilename" displayType="summary" displayName="Root Deployment Filename" description="the filename of the root deployable that will be used to finalize the bootstrap process" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="serverBaseDir" displayType="summary" displayName="Server Base Dir" description="the base directory for calculating server home directories" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="serverBaseURL.authority" displayType="detail" displayName="Authority" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverBaseURL.defaultPort" measurementType="dynamic" displayType="detail" displayName="Default Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="serverBaseURL.file" displayType="detail" displayName="File" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverBaseURL.host" displayType="detail" displayName="Host" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverBaseURL.path" displayType="detail" displayName="Path" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverBaseURL.port" measurementType="dynamic" displayType="detail" displayName="Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="serverBaseURL.protocol" displayType="detail" displayName="Protocol" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverBaseURL.query" displayType="detail" displayName="Query" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverBaseURL.ref" displayType="detail" displayName="Ref" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverBaseURL.userInfo" displayType="detail" displayName="User Info" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverDataDir" displayType="summary" displayName="Server Data Dir" description="the directory where local data will be stored" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="serverHomeDir" displayType="summary" displayName="Server Home Dir" description="the server home directory" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="serverHomeURL.authority" displayType="detail" displayName="Authority" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverHomeURL.defaultPort" measurementType="dynamic" displayType="detail" displayName="Default Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="serverHomeURL.file" displayType="detail" displayName="File" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverHomeURL.host" displayType="detail" displayName="Host" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverHomeURL.path" displayType="detail" displayName="Path" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverHomeURL.port" measurementType="dynamic" displayType="detail" displayName="Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="serverHomeURL.protocol" displayType="detail" displayName="Protocol" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverHomeURL.query" displayType="detail" displayName="Query" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverHomeURL.ref" displayType="detail" displayName="Ref" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverHomeURL.userInfo" displayType="detail" displayName="User Info" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverLibraryURL.authority" displayType="detail" displayName="Authority" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverLibraryURL.defaultPort" measurementType="dynamic" displayType="detail" displayName="Default Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="serverLibraryURL.file" displayType="detail" displayName="File" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverLibraryURL.host" displayType="detail" displayName="Host" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverLibraryURL.path" displayType="detail" displayName="Path" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverLibraryURL.port" measurementType="dynamic" displayType="detail" displayName="Port" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="serverLibraryURL.protocol" displayType="detail" displayName="Protocol" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverLibraryURL.query" displayType="detail" displayName="Query" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverLibraryURL.ref" displayType="detail" displayName="Ref" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverLibraryURL.userInfo" displayType="detail" displayName="User Info" defaultOn="true" defaultInterval="60000" dataType="trait" category="performance"/>
+ <metric property="serverLogDir" displayType="summary" displayName="Server Log Dir" description="the server log directory" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="serverName" displayType="summary" displayName="Server Name" description="the name of the active profile the sever is using" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="serverNativeDir" displayType="summary" displayName="Server Native Dir" description="the directory for platform native files" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="serverTempDeployDir" displayType="summary" displayName="Server Temp Deploy Dir" description="the temporary deployment dir" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="serverTempDir" displayType="summary" displayName="Server Temp Dir" description="the directory where temporary files will be stored" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="specificationVersion" displayType="summary" displayName="Specification Version" description="the server Specification-Version" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:simple-property required="false" readOnly="true" name="partitionName" description="The name of the clustering partition"/>
+ </resource-configuration>
+ </service>
+ <service name="ServerInfo MCBean">
+ <operation name="listMemoryPools" displayName="List Memory Pools" description="Return a listing of the thread pools on jdk5+">
+ <parameters>
+ <c:simple-property type="boolean" required="false" name="fancy" description="produce a text-based graph when true"/>
+ </parameters>
+ <results>
+ <c:notes>Return a listing of the thread pools on jdk5+</c:notes>
+ <c:simple-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="listThreadCpuUtilization" displayName="List Thread Cpu Utilization" description="Return a listing of the active threads and thread groups">
+ <results>
+ <c:notes>Return a listing of the active threads and thread groups</c:notes>
+ <c:simple-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="listThreadDump" displayName="List Thread Dump" description="Return a listing of the active threads and thread groups">
+ <results>
+ <c:notes>Return a listing of the active threads and thread groups</c:notes>
+ <c:simple-property required="false" name="result"/>
+ </results>
+ </operation>
+ <metric property="OSArch" displayType="summary" displayName="OS Arch" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="OSName" displayType="summary" displayName="OS Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="OSVersion" displayType="summary" displayName="OS Version" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="activeThreadCount" measurementType="dynamic" displayType="detail" displayName="Active Thread Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="activeThreadGroupCount" measurementType="dynamic" displayType="detail" displayName="Active Thread Group Count" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="availableProcessors" measurementType="dynamic" displayType="detail" displayName="Available Processors" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="freeMemory" measurementType="dynamic" displayType="detail" displayName="Free Memory" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="hostAddress" displayType="summary" displayName="Host Address" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="hostName" displayType="summary" displayName="Host Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="javaVMName" displayType="summary" displayName="Java VM Name" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="javaVMVendor" displayType="summary" displayName="Java VM Vendor" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="javaVMVersion" displayType="summary" displayName="Java VM Version" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="javaVendor" displayType="summary" displayName="Java Vendor" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="javaVersion" displayType="summary" displayName="Java Version" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="maxMemory" measurementType="dynamic" displayType="detail" displayName="Max Memory" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <metric property="totalMemory" measurementType="dynamic" displayType="detail" displayName="Total Memory" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <resource-configuration>
+ <c:simple-property required="false" readOnly="true" name="OSArch"/>
+ <c:simple-property required="false" readOnly="true" name="OSName"/>
+ <c:simple-property required="false" readOnly="true" name="OSVersion"/>
+ <c:list-property required="false" name="alias" description="Aliases of the bean">
+ <c:simple-property required="false" name="element"/>
+ </c:list-property>
+ <c:simple-property required="false" readOnly="true" name="javaVMName"/>
+ <c:simple-property required="false" readOnly="true" name="javaVMVendor"/>
+ <c:simple-property required="false" readOnly="true" name="javaVMVersion"/>
+ <c:simple-property required="false" readOnly="true" name="javaVendor"/>
+ <c:simple-property required="false" readOnly="true" name="javaVersion"/>
+ </resource-configuration>
+ </service>
+ <service name="ServiceBindingManager MCBean">
+ <resource-configuration>
+ <c:simple-property required="false" name="activeBindingSetName" description="the name of the binding set the ServiceBindingManager should use when resolving bindings"/>
+ <c:list-property required="false" name="bindingSets" description="the named binding sets">
+ <c:map-property required="false" name="element">
+ <c:simple-property required="false" name="defaultHostName" description="the host name that should be used for all bindings whose configuration does not specify fixedHostName="true""/>
+ <c:simple-property required="false" name="name" description="the name of the binding set"/>
+ <c:list-property name="overrideBindings" description="binding configurations that apply only to this binding set, either non-standard bindings or ones that override standard binding configurations">
+ <c:map-property required="false" name="element">
+ <c:simple-property required="false" name="bindingName" description="a qualifier identifying which particular binding within the service this is"/>
+ <c:simple-property required="false" name="description" description="description of the binding"/>
+ <c:simple-property type="boolean" required="false" name="fixedHostName" description="whether the host name should remain fixed in all binding sets"/>
+ <c:simple-property type="boolean" required="false" name="fixedPort" description="whether the port should remain fixed in all binding sets"/>
+ <c:simple-property required="false" name="fullyQualifiedName" description="the fully qualified binding name"/>
+ <c:simple-property required="false" name="hostName" description="the host name or string notation IP address to use for the binding"/>
+ <c:simple-property type="integer" required="false" name="port" description="the port to use for the binding"/>
+ <c:simple-property required="false" name="serviceName" description="the name of the service to which this binding applies"/>
+ </c:map-property>
+ </c:list-property>
+ <c:simple-property type="integer" required="false" name="portOffset" description="value to add to the port configuration for a standard binding to derive the port to use in this binding set"/>
+ </c:map-property>
+ </c:list-property>
+ <c:list-property required="false" name="standardBindings" description="the base set of bindings that should be associated with each binding set">
+ <c:map-property required="false" name="element">
+ <c:simple-property required="false" name="bindingName" description="a qualifier identifying which particular binding within the service this is"/>
+ <c:simple-property required="false" name="description" description="description of the binding"/>
+ <c:simple-property type="boolean" required="false" name="fixedHostName" description="whether the host name should remain fixed in all binding sets"/>
+ <c:simple-property type="boolean" required="false" name="fixedPort" description="whether the port should remain fixed in all binding sets"/>
+ <c:simple-property required="false" name="fullyQualifiedName" description="the fully qualified binding name"/>
+ <c:simple-property required="false" name="hostName" description="the host name or string notation IP address to use for the binding"/>
+ <c:simple-property type="integer" required="false" name="port" description="the port to use for the binding"/>
+ <c:simple-property required="false" name="serviceName" description="the name of the service to which this binding applies"/>
+ </c:map-property>
+ </c:list-property>
+ <c:simple-property required="false" name="state" description="The bean controller state"/>
+ </resource-configuration>
+ </service>
+ <service name="Context WAR">
+ <metric property="contextRoot" displayType="summary" displayName="Context Root" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:simple-property required="false" readOnly="true" name="contextRoot"/>
+ </resource-configuration>
+ </service>
+ <service name="beans">
+ <metric property="state" displayType="summary" displayName="State" description="The bean controller state" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ear">
+ <resource-configuration>
+ <c:simple-property type="boolean" required="false" name="blackList"/>
+ <c:simple-property type="boolean" required="false" name="cache"/>
+ <c:map-property required="false" name="capabilities">
+ <c:list-property name="capabilities">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </c:map-property>
+ <c:simple-property required="false" name="domain"/>
+ <c:simple-property required="false" name="excluded"/>
+ <c:simple-property required="false" name="excludedExport"/>
+ <c:simple-property required="false" name="exportAll"/>
+ <c:simple-property type="boolean" required="false" name="importAll"/>
+ <c:simple-property required="false" name="included"/>
+ <c:simple-property required="false" name="name"/>
+ <c:simple-property required="false" name="parentDomain"/>
+ <c:simple-property type="boolean" required="false" name="parentFirst"/>
+ <c:map-property required="false" name="requirements">
+ <c:list-property name="requirements">
+ <c:map-property required="false" name="element">
+ <c:simple-property type="boolean" required="false" name="dynamic"/>
+ <c:simple-property type="boolean" required="false" name="optional"/>
+ <c:simple-property type="boolean" required="false" name="reExport"/>
+ </c:map-property>
+ </c:list-property>
+ </c:map-property>
+ <c:simple-property required="false" name="version"/>
+ </resource-configuration>
+ </service>
+ <service name="ejb2x">
+ <resource-configuration>
+ <c:list-property required="false" name="beanFactories">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </resource-configuration>
+ </service>
+ <service name="ejb3x">
+ <metric property="availableCount" measurementType="dynamic" displayType="detail" displayName="Available Count" description="The number of slots available in the instance pool" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="createCount" measurementType="dynamic" displayType="detail" displayName="Create Count" description="The number of bean instances created" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="currentSize" measurementType="dynamic" displayType="detail" displayName="Current Size" description="The current number of bean instances in the backing pool for this SLSB" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="lastResetTime" measurementType="dynamic" displayType="detail" displayName="Last Reset Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="maxSize" measurementType="dynamic" displayType="detail" displayName="Max Size" description="The maxmimum size of the backing instance pool" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="removeCount" measurementType="dynamic" displayType="detail" displayName="Remove Count" description="The number of backing SLSB instances which have been removed" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="beanFactories">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ <c:simple-property type="boolean" required="false" name="blackList"/>
+ <c:simple-property type="boolean" required="false" name="cache"/>
+ <c:map-property required="false" name="capabilities">
+ <c:list-property name="capabilities">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </c:map-property>
+ <c:simple-property required="false" name="domain"/>
+ <c:simple-property required="false" name="excluded"/>
+ <c:simple-property required="false" name="excludedExport"/>
+ <c:simple-property required="false" name="exportAll"/>
+ <c:simple-property type="boolean" required="false" name="importAll"/>
+ <c:simple-property required="false" name="included"/>
+ <c:simple-property required="false" name="name"/>
+ <c:simple-property required="false" name="parentDomain"/>
+ <c:simple-property type="boolean" required="false" name="parentFirst"/>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ <c:map-property required="false" name="requirements">
+ <c:list-property name="requirements">
+ <c:map-property required="false" name="element">
+ <c:simple-property type="boolean" required="false" name="dynamic"/>
+ <c:simple-property type="boolean" required="false" name="optional"/>
+ <c:simple-property type="boolean" required="false" name="reExport"/>
+ </c:map-property>
+ </c:list-property>
+ </c:map-property>
+ <c:simple-property required="false" name="state" description="The bean controller state"/>
+ <c:simple-property required="false" name="version"/>
+ </resource-configuration>
+ </service>
+ <service name="par">
+ <metric property="availableCount" measurementType="dynamic" displayType="detail" displayName="Available Count" description="The number of slots available in the instance pool" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="createCount" measurementType="dynamic" displayType="detail" displayName="Create Count" description="The number of bean instances created" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="currentSize" measurementType="dynamic" displayType="detail" displayName="Current Size" description="The current number of bean instances in the backing pool for this SLSB" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="lastResetTime" measurementType="dynamic" displayType="detail" displayName="Last Reset Time" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="maxSize" measurementType="dynamic" displayType="detail" displayName="Max Size" description="The maxmimum size of the backing instance pool" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="removeCount" measurementType="dynamic" displayType="detail" displayName="Remove Count" description="The number of backing SLSB instances which have been removed" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <resource-configuration>
+ <c:list-property required="false" name="beanFactories">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ <c:simple-property type="boolean" required="false" name="blackList"/>
+ <c:simple-property type="boolean" required="false" name="cache"/>
+ <c:map-property required="false" name="capabilities">
+ <c:list-property name="capabilities">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </c:map-property>
+ <c:simple-property required="false" name="domain"/>
+ <c:simple-property required="false" name="excluded"/>
+ <c:simple-property required="false" name="excludedExport"/>
+ <c:simple-property required="false" name="exportAll"/>
+ <c:simple-property type="boolean" required="false" name="importAll"/>
+ <c:simple-property required="false" name="included"/>
+ <c:simple-property required="false" name="name"/>
+ <c:simple-property required="false" name="parentDomain"/>
+ <c:simple-property type="boolean" required="false" name="parentFirst"/>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ <c:map-property required="false" name="requirements">
+ <c:list-property name="requirements">
+ <c:map-property required="false" name="element">
+ <c:simple-property type="boolean" required="false" name="dynamic"/>
+ <c:simple-property type="boolean" required="false" name="optional"/>
+ <c:simple-property type="boolean" required="false" name="reExport"/>
+ </c:map-property>
+ </c:list-property>
+ </c:map-property>
+ <c:simple-property required="false" name="state" description="The bean controller state"/>
+ <c:simple-property required="false" name="version"/>
+ </resource-configuration>
+ </service>
+ <service name="rar">
+ <resource-configuration>
+ <c:simple-property type="boolean" required="false" name="blackList"/>
+ <c:simple-property type="boolean" required="false" name="cache"/>
+ <c:map-property required="false" name="capabilities">
+ <c:list-property name="capabilities">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </c:map-property>
+ <c:map-property required="false" name="connectorMetaData">
+ <c:simple-property required="false" name="EISType"/>
+ <c:simple-property required="false" name="RAClass"/>
+ <c:simple-property required="false" name="RAVersion"/>
+ <c:list-property name="adminObjects">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ <c:list-property name="properties">
+ <c:map-property required="false" name="element">
+ <c:list-property name="descriptions">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ <c:simple-property required="false" name="name"/>
+ <c:simple-property required="false" name="type"/>
+ <c:simple-property required="false" name="value"/>
+ </c:map-property>
+ </c:list-property>
+ <c:simple-property type="boolean" required="false" name="reauthenticationSupport"/>
+ <c:simple-property required="false" name="vendorName"/>
+ <c:simple-property required="false" name="version"/>
+ </c:map-property>
+ <c:simple-property required="false" name="domain"/>
+ <c:simple-property required="false" name="excluded"/>
+ <c:simple-property required="false" name="excludedExport"/>
+ <c:simple-property required="false" name="exportAll"/>
+ <c:simple-property type="boolean" required="false" name="importAll"/>
+ <c:simple-property required="false" name="included"/>
+ <c:simple-property required="false" name="name"/>
+ <c:simple-property required="false" name="parentDomain"/>
+ <c:simple-property type="boolean" required="false" name="parentFirst"/>
+ <c:map-property required="false" name="raXmlMetaData">
+ <c:list-property name="dependsMetaData">
+ <c:map-property required="false" name="element">
+ <c:simple-property required="false" name="dependsName"/>
+ </c:map-property>
+ </c:list-property>
+ <c:list-property name="properties">
+ <c:map-property required="false" name="element">
+ <c:list-property name="descriptions">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ <c:simple-property required="false" name="name"/>
+ <c:simple-property required="false" name="type"/>
+ <c:simple-property required="false" name="value"/>
+ </c:map-property>
+ </c:list-property>
+ </c:map-property>
+ <c:map-property required="false" name="requirements">
+ <c:list-property name="requirements">
+ <c:map-property required="false" name="element">
+ <c:simple-property type="boolean" required="false" name="dynamic"/>
+ <c:simple-property type="boolean" required="false" name="optional"/>
+ <c:simple-property type="boolean" required="false" name="reExport"/>
+ </c:map-property>
+ </c:list-property>
+ </c:map-property>
+ <c:simple-property required="false" name="version"/>
+ </resource-configuration>
+ </service>
+ <service name="sar">
+ <resource-configuration>
+ <c:simple-property type="boolean" required="false" name="blackList"/>
+ <c:simple-property type="boolean" required="false" name="cache"/>
+ <c:map-property required="false" name="capabilities">
+ <c:list-property name="capabilities">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </c:map-property>
+ <c:list-property required="false" name="classpath" description="The deployment classpath">
+ <c:map-property required="false" name="element">
+ <c:simple-property required="false" name="codeBase"/>
+ <c:simple-property required="false" name="archives"/>
+ </c:map-property>
+ </c:list-property>
+ <c:simple-property required="false" name="domain"/>
+ <c:simple-property required="false" name="excluded"/>
+ <c:simple-property required="false" name="excludedExport"/>
+ <c:simple-property required="false" name="exportAll"/>
+ <c:simple-property type="boolean" required="false" name="importAll"/>
+ <c:simple-property required="false" name="included"/>
+ <c:simple-property required="false" name="name"/>
+ <c:simple-property required="false" name="parentDomain"/>
+ <c:simple-property type="boolean" required="false" name="parentFirst"/>
+ <c:map-property required="false" name="requirements">
+ <c:list-property name="requirements">
+ <c:map-property required="false" name="element">
+ <c:simple-property type="boolean" required="false" name="dynamic"/>
+ <c:simple-property type="boolean" required="false" name="optional"/>
+ <c:simple-property type="boolean" required="false" name="reExport"/>
+ </c:map-property>
+ </c:list-property>
+ </c:map-property>
+ <c:list-property required="false" name="services" description="The mbeans">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ <c:simple-property required="false" name="version"/>
+ </resource-configuration>
+ </service>
+ <service name="war">
+ <metric property="contextRoot" displayType="summary" displayName="Context Root" defaultOn="true" defaultInterval="600000" dataType="trait" category="performance"/>
+ <resource-configuration>
+ <c:simple-property type="boolean" required="false" name="blackList"/>
+ <c:simple-property type="boolean" required="false" name="cache"/>
+ <c:map-property required="false" name="capabilities">
+ <c:list-property name="capabilities">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
+ </c:map-property>
+ <c:simple-property required="false" readOnly="true" name="contextRoot"/>
+ <c:simple-property required="false" name="domain"/>
+ <c:simple-property required="false" name="excluded"/>
+ <c:simple-property required="false" name="excludedExport"/>
+ <c:simple-property required="false" name="exportAll"/>
+ <c:simple-property type="boolean" required="false" name="importAll"/>
+ <c:simple-property required="false" name="included"/>
+ <c:simple-property required="false" name="name"/>
+ <c:simple-property required="false" name="parentDomain"/>
+ <c:simple-property type="boolean" required="false" name="parentFirst"/>
+ <c:map-property required="false" name="requirements">
+ <c:list-property name="requirements">
+ <c:map-property required="false" name="element">
+ <c:simple-property type="boolean" required="false" name="dynamic"/>
+ <c:simple-property type="boolean" required="false" name="optional"/>
+ <c:simple-property type="boolean" required="false" name="reExport"/>
+ </c:map-property>
+ </c:list-property>
+ </c:map-property>
+ <c:simple-property required="false" name="version"/>
+ </resource-configuration>
+ </service>
+</plugin>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/bin/run.conf.bat
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/bin/run.conf.bat (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/bin/run.conf.bat 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,57 @@
+rem ### -*- batch file -*- ######################################################
+rem # ##
+rem # JBoss Bootstrap Script Configuration ##
+rem # ##
+rem #############################################################################
+
+rem # $Id: run.conf.bat 414 2009-05-14 00:54:45Z ips $
+
+rem #
+rem # This batch file is executed by run.bat to initialize the environment
+rem # variables that run.bat uses. It is recommended to use this file to
+rem # configure these variables, rather than modifying run.bat itself.
+rem #
+
+rem #
+rem # Specify the profiler configuration file to load.
+rem #
+rem # Default is to not load profiler configuration file.
+rem #
+rem set "PROFILER=%JBOSS_HOME%\bin\jboss-profiler.properties"
+
+rem #
+rem # Specify the location of the Java home directory (it is recommended that
+rem # this always be set). If set, then "%JAVA_HOME%\bin\java" will be used as
+rem # the Java VM executable; otherwise, "%JAVA%" will be used (see below).
+rem #
+rem set "JAVA_HOME=C:\opt\jdk1.6.0_13"
+
+rem #
+rem # Specify the exact Java VM executable to use - only used if JAVA_HOME is
+rem # not set. Default is "java".
+rem #
+rem set "JAVA=C:\opt\jdk1.6.0_13\bin\java"
+
+rem #
+rem # Specify options to pass to the Java VM. Note, there are some additional
+rem # options are always passed by run.bat.
+rem #
+if not "x%JAVA_OPTS%" == "x" goto javaOptsSet
+rem # JVM memory allocation pool parameters.
+set JAVA_OPTS=%JAVA_OPTS% -Xms200M -Xmx400M -XX:PermSize=100M -XX:MaxPermSize=200M
+
+rem # Reduce the RMI GCs to once per hour for Sun JVMs.
+set "JAVA_OPTS=%JAVA_OPTS% -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000"
+
+rem # Warn when resolving remote XML DTDs or schemas.
+set "JAVA_OPTS=%JAVA_OPTS% -Dorg.jboss.resolver.warning=true"
+
+rem # Enable debug mode for Admin Console.
+set "JAVA_OPTS=%JAVA_OPTS% -Djbmancon.debug=true"
+
+rem # Expose the Java platform MBeans via the JBoss MBeanServer.
+set "JAVA_OPTS=%JAVA_OPTS% -Djboss.platform.mbeanserver"
+
+rem # Enable JPDA remote socket debugging.
+set "JAVA_OPTS=%JAVA_OPTS% -Xrunjdwp:transport=dt_socket,address=7777,server=y,suspend=n"
+:javaOptsSet
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/conf/jboss-log4j.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/conf/jboss-log4j.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/conf/jboss-log4j.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,366 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
+
+<!-- ===================================================================== -->
+<!-- -->
+<!-- Log4j Configuration -->
+<!-- -->
+<!-- ===================================================================== -->
+
+<!-- $Id: jboss-log4j.xml 673 2009-08-14 23:36:39Z ips $ -->
+
+<!--
+ | For more configuration information and examples see the Jakarta Log4j
+ | owebsite: http://jakarta.apache.org/log4j
+ -->
+
+<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
+
+ <!-- ================================= -->
+ <!-- Preserve messages in a local file -->
+ <!-- ================================= -->
+
+ <!-- A time/date based rolling appender -->
+ <appender name="FILE" class="org.jboss.logging.appender.DailyRollingFileAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="File" value="${jboss.server.log.dir}/server.log"/>
+ <param name="Append" value="false"/>
+
+ <!-- Rollover at midnight each day -->
+ <param name="DatePattern" value="'.'yyyy-MM-dd"/>
+
+ <!-- Rollover at the top of each hour
+ <param name="DatePattern" value="'.'yyyy-MM-dd-HH"/>
+ -->
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <!-- The default pattern: Date Priority [Category] (Thread) Message\n -->
+ <param name="ConversionPattern" value="%d %-5p [%c] (%t) %m%n"/>
+
+ <!-- The full pattern: Date MS Priority [Category] (Thread:NDC) Message\n
+ <param name="ConversionPattern" value="%d %-5r %-5p [%c] (%t:%x) %m%n"/>
+ -->
+ </layout>
+ </appender>
+
+ <!-- A size based file rolling appender
+ <appender name="FILE" class="org.jboss.logging.appender.RollingFileAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="File" value="${jboss.server.log.dir}/server.log"/>
+ <param name="Append" value="false"/>
+ <param name="MaxFileSize" value="500KB"/>
+ <param name="MaxBackupIndex" value="1"/>
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d %-5p [%c] %m%n"/>
+ </layout>
+ </appender>
+ -->
+
+ <!-- ============================== -->
+ <!-- Append messages to the console -->
+ <!-- ============================== -->
+
+ <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="Target" value="System.out"/>
+ <!--<param name="Threshold" value="INFO"/>-->
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <!-- The default pattern: Date Priority [Category] Message\n -->
+ <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] %m%n"/>
+ </layout>
+ </appender>
+
+ <!-- ====================== -->
+ <!-- More Appender examples -->
+ <!-- ====================== -->
+
+ <!-- Buffer events and log them asynchronously
+ <appender name="ASYNC" class="org.apache.log4j.AsyncAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <appender-ref ref="FILE"/>
+ <appender-ref ref="CONSOLE"/>
+ <appender-ref ref="SMTP"/>
+ </appender>
+ -->
+
+ <!-- EMail events to an administrator
+ <appender name="SMTP" class="org.apache.log4j.net.SMTPAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="Threshold" value="ERROR"/>
+ <param name="To" value="admin(a)myhost.domain.com"/>
+ <param name="From" value="nobody(a)myhost.domain.com"/>
+ <param name="Subject" value="JBoss Sever Errors"/>
+ <param name="SMTPHost" value="localhost"/>
+ <param name="BufferSize" value="10"/>
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="[%d{ABSOLUTE},%c{1}] %m%n"/>
+ </layout>
+ </appender>
+ -->
+
+ <!-- Syslog events
+ <appender name="SYSLOG" class="org.apache.log4j.net.SyslogAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="Facility" value="LOCAL7"/>
+ <param name="FacilityPrinting" value="true"/>
+ <param name="SyslogHost" value="localhost"/>
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="[%d{ABSOLUTE},%c{1}] %m%n"/>
+ </layout>
+ </appender>
+ -->
+
+ <!-- Log events to JMS (requires a topic to be created)
+ <appender name="JMS" class="org.apache.log4j.net.JMSAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="Threshold" value="ERROR"/>
+ <param name="TopicConnectionFactoryBindingName" value="java:/ConnectionFactory"/>
+ <param name="TopicBindingName" value="topic/MyErrorsTopic"/>
+ </appender>
+ -->
+
+ <!-- Log events through SNMP
+ <appender name="TRAP_LOG" class="org.apache.log4j.ext.SNMPTrapAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="ImplementationClassName" value="org.apache.log4j.ext.JoeSNMPTrapSender"/>
+ <param name="ManagementHost" value="127.0.0.1"/>
+ <param name="ManagementHostTrapListenPort" value="162"/>
+ <param name="EnterpriseOID" value="1.3.6.1.4.1.24.0"/>
+ <param name="LocalIPAddress" value="127.0.0.1"/>
+ <param name="LocalTrapSendPort" value="161"/>
+ <param name="GenericTrapType" value="6"/>
+ <param name="SpecificTrapType" value="12345678"/>
+ <param name="CommunityString" value="public"/>
+ <param name="ForwardStackTraceWithTrap" value="true"/>
+ <param name="Threshold" value="DEBUG"/>
+ <param name="ApplicationTrapOID" value="1.3.6.1.4.1.24.12.10.22.64"/>
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d,%p,[%t],[%c],%m%n"/>
+ </layout>
+ </appender>
+ -->
+
+ <!-- Emit events as JMX notifications
+ <appender name="JMX" class="org.jboss.monitor.services.JMXNotificationAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+
+ <param name="Threshold" value="WARN"/>
+ <param name="ObjectName" value="jboss.system:service=Logging,type=JMXNotificationAppender"/>
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d %-5p [%c] %m"/>
+ </layout>
+ </appender>
+ -->
+
+ <!-- Security AUDIT Appender -->
+ <appender name="AUDIT" class="org.jboss.logging.appender.DailyRollingFileAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="File" value="${jboss.server.log.dir}/audit.log"/>
+ <param name="Append" value="true"/>
+ <param name="DatePattern" value="'.'yyyy-MM-dd"/>
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d %-5p [%c] (%t:%x) %m%n"/>
+ </layout>
+ </appender>
+
+ <!-- ================ -->
+ <!-- Limit categories -->
+ <!-- ================ -->
+
+ <!-- Limit the org.apache category to INFO as its DEBUG is verbose -->
+ <category name="org.apache">
+ <priority value="INFO"/>
+ </category>
+
+ <!-- Limit JSF logging to DEBUG. FINER and FINEST will not be logged -->
+ <category name="javax.enterprise.resource.webcontainer.jsf">
+ <priority value="DEBUG"/>
+ </category>
+
+ <!-- Limit the jacorb category to WARN as its INFO is verbose -->
+ <category name="jacorb">
+ <priority value="WARN"/>
+ </category>
+
+ <!-- Set the logging level of the JSF implementation -->
+ <category name="javax.enterprise.resource.webcontainer.jsf">
+ <priority value="INFO"/>
+ </category>
+
+ <!-- Limit the org.jgroups category to WARN as its INFO is verbose -->
+ <category name="org.jgroups">
+ <priority value="WARN"/>
+ </category>
+
+ <!-- Limit the org.quartz category to INFO as its DEBUG is verbose -->
+ <category name="org.quartz">
+ <priority value="INFO"/>
+ </category>
+
+ <!-- Limit JBoss categories
+ <category name="org.jboss">
+ <priority value="INFO"/>
+ </category>
+ -->
+
+ <!-- Limit the JSR77 categories -->
+ <category name="org.jboss.management">
+ <priority value="INFO"/>
+ </category>
+
+ <!-- Show the evolution of the DataSource pool in the logs [inUse/Available/Max]
+ <category name="org.jboss.resource.connectionmanager.JBossManagedConnectionPool">
+ <priority value="TRACE"/>
+ </category>
+ -->
+
+ <!-- Category specifically for Security Audit Provider -->
+ <category name="org.jboss.security.audit.providers.LogAuditProvider" additivity="false">
+ <priority value="TRACE"/>
+ <appender-ref ref="AUDIT"/>
+ </category>
+
+ <!-- Limit the org.jboss.serial (jboss-serialization) to INFO as its DEBUG is verbose -->
+ <category name="org.jboss.serial">
+ <priority value="INFO"/>
+ </category>
+
+ <!-- Decrease the priority threshold for the org.jboss.varia category
+ <category name="org.jboss.varia">
+ <priority value="DEBUG"/>
+ </category>
+ -->
+
+ <!-- Enable JBossWS message tracing
+ <category name="org.jboss.ws.core.MessageTrace">
+ <priority value="TRACE"/>
+ </category>
+ -->
+
+ <category name="org.jboss.ejb3">
+ <priority value="WARN"/>
+ </category>
+
+ <category name="org.jboss.ejb">
+ <priority value="WARN"/>
+ </category>
+
+ <category name="org.ajax4jsf">
+ <priority value="WARN"/>
+ </category>
+
+ <!--
+ | An example of enabling the custom TRACE level priority that is used
+ | by the JBoss internals to diagnose low level details. This example
+ | turns on TRACE level msgs for the org.jboss.ejb.plugins package and its
+ | subpackages. This will produce A LOT of logging output.
+ |
+ | Note: since jboss AS 4.2.x, the trace level is supported natively by
+ | log4j, so although the custom org.jboss.logging.XLevel priority will
+ | still work, there is no need to use it. The two examples that follow
+ | will both enable trace logging.
+ <category name="org.jboss.system">
+ <priority value="TRACE" class="org.jboss.logging.XLevel"/>
+ </category>
+ <category name="org.jboss.ejb.plugins">
+ <priority value="TRACE"/>
+ </category>
+ -->
+
+ <!--
+ | Logs these events to SNMP:
+ - server starts/stops
+ - cluster evolution (node death/startup)
+ - When an EJB archive is deployed (and associated verified messages)
+ - When an EAR archive is deployed
+
+ <category name="org.jboss.system.server.Server">
+ <priority value="INFO" />
+ <appender-ref ref="TRAP_LOG"/>
+ </category>
+
+ <category name="org.jboss.ha.framework.interfaces.HAPartition.lifecycle">
+ <priority value="INFO" />
+ <appender-ref ref="TRAP_LOG"/>
+ </category>
+
+ <category name="org.jboss.deployment.MainDeployer">
+ <priority value="ERROR" />
+ <appender-ref ref="TRAP_LOG"/>
+ </category>
+
+ <category name="org.jboss.ejb.EJBDeployer">
+ <priority value="INFO" />
+ <appender-ref ref="TRAP_LOG"/>
+ </category>
+
+ <category name="org.jboss.deployment.EARDeployer">
+ <priority value="INFO" />
+ <appender-ref ref="TRAP_LOG"/>
+ </category>
+ -->
+
+ <!-- Clustering logging -->
+ <!-- Uncomment the following to redirect the org.jgroups and
+ org.jboss.ha categories to a cluster.log file.
+
+ <appender name="CLUSTER" class="org.jboss.logging.appender.RollingFileAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="File" value="${jboss.server.log.dir}/cluster.log"/>
+ <param name="Append" value="false"/>
+ <param name="MaxFileSize" value="500KB"/>
+ <param name="MaxBackupIndex" value="1"/>
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d %-5p [%c] %m%n"/>
+ </layout>
+ </appender>
+ <category name="org.jgroups">
+ <priority value="DEBUG" />
+ <appender-ref ref="CLUSTER"/>
+ </category>
+ <category name="org.jboss.ha">
+ <priority value="DEBUG" />
+ <appender-ref ref="CLUSTER"/>
+ </category>
+ -->
+
+ <category name="org.jboss.on.embedded">
+ <priority value="DEBUG"/>
+ </category>
+ <category name="org.rhq.plugins.jbossas5">
+ <priority value="DEBUG"/>
+ </category>
+ <category name="org.jboss.seam">
+ <priority value="WARN"/>
+ </category>
+ <category name="com.sun">
+ <priority value="WARN"/>
+ </category>
+ <category name="org.rhq.core.pc.inventory.RuntimeDiscoveryExecutor">
+ <priority value="WARN"/>
+ </category>
+
+ <category name="org.jboss.managed.plugins.factory.AbstractManagedObjectPopulator">
+ <priority value="ERROR"/>
+ </category>
+
+ <!-- Limit the verbose MC4J EMS (lib used by admin-console) categories -->
+ <category name="org.mc4j.ems">
+ <priority value="WARN"/>
+ </category>
+
+ <!-- ======================= -->
+ <!-- Setup the Root category -->
+ <!-- ======================= -->
+
+ <root>
+ <level value="INFO"/>
+ <appender-ref ref="CONSOLE"/>
+ <appender-ref ref="FILE"/>
+ </root>
+
+</log4j:configuration>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyLocalTxCF-ds.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyLocalTxCF-ds.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyLocalTxCF-ds.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<connection-factories>
+ <tx-connection-factory>
+ <jndi-name>MyLocalTxCF</jndi-name>
+ <rar-name>jms-ra.rar</rar-name>
+ <use-java-context>true</use-java-context>
+ <connection-definition>org.jboss.resource.adapter.jms.JmsConnectionFactory</connection-definition>
+ <jmx-invoker-name>jboss:service=invoker,type=jrmp</jmx-invoker-name>
+ <min-pool-size>0</min-pool-size>
+ <max-pool-size>10</max-pool-size>
+ <blocking-timeout-millis>30000</blocking-timeout-millis>
+ <idle-timeout-minutes>30</idle-timeout-minutes>
+ <prefill>false</prefill>
+ <background-validation>false</background-validation>
+ <background-validation-millis>0</background-validation-millis>
+ <validate-on-match>true</validate-on-match>
+ <statistics-formatter>org.jboss.resource.statistic.pool.JBossDefaultSubPoolStatisticFormatter
+ </statistics-formatter>
+ <isSameRM-override-value>false</isSameRM-override-value>
+ <allocation-retry>0</allocation-retry>
+ <allocation-retry-wait-millis>5000</allocation-retry-wait-millis>
+ <metadata/>
+ <local-transaction/>
+ <xa-resource-timeout>0</xa-resource-timeout>
+ </tx-connection-factory>
+</connection-factories>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyNoTxCF-ds.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyNoTxCF-ds.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyNoTxCF-ds.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<connection-factories>
+ <no-tx-connection-factory>
+ <jndi-name>MyNoTxCF</jndi-name>
+ <rar-name>jms-ra.rar</rar-name>
+ <use-java-context>true</use-java-context>
+ <connection-definition>org.jboss.resource.adapter.jms.JmsConnectionFactory</connection-definition>
+ <jmx-invoker-name>jboss:service=invoker,type=jrmp</jmx-invoker-name>
+ <min-pool-size>0</min-pool-size>
+ <max-pool-size>10</max-pool-size>
+ <blocking-timeout-millis>30000</blocking-timeout-millis>
+ <idle-timeout-minutes>30</idle-timeout-minutes>
+ <prefill>false</prefill>
+ <background-validation>false</background-validation>
+ <background-validation-millis>0</background-validation-millis>
+ <validate-on-match>true</validate-on-match>
+ <statistics-formatter>org.jboss.resource.statistic.pool.JBossDefaultSubPoolStatisticFormatter
+ </statistics-formatter>
+ <isSameRM-override-value>false</isSameRM-override-value>
+ <interleaving/>
+ <allocation-retry>0</allocation-retry>
+ <allocation-retry-wait-millis>5000</allocation-retry-wait-millis>
+ <metadata/>
+ </no-tx-connection-factory>
+</connection-factories>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyOracleLocalTxDS-ds.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyOracleLocalTxDS-ds.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyOracleLocalTxDS-ds.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<datasources>
+ <local-tx-datasource>
+ <jndi-name>MyOracleLocalTxDS</jndi-name>
+ <rar-name>jboss-local-jdbc.rar</rar-name>
+ <use-java-context>false</use-java-context>
+ <connection-definition>javax.sql.DataSource</connection-definition>
+ <jmx-invoker-name>jboss:service=invoker,type=jrmp</jmx-invoker-name>
+ <min-pool-size>0</min-pool-size>
+ <max-pool-size>0</max-pool-size>
+ <blocking-timeout-millis>0</blocking-timeout-millis>
+ <idle-timeout-minutes>0</idle-timeout-minutes>
+ <prefill>false</prefill>
+ <background-validation>false</background-validation>
+ <background-validation-millis>0</background-validation-millis>
+ <validate-on-match>false</validate-on-match>
+ <statistics-formatter>org.jboss.resource.statistic.pool.JBossDefaultSubPoolStatisticFormatter
+ </statistics-formatter>
+ <isSameRM-override-value>false</isSameRM-override-value>
+ <allocation-retry>0</allocation-retry>
+ <allocation-retry-wait-millis>0</allocation-retry-wait-millis>
+ <metadata>
+ <type-mapping>Oracle9i</type-mapping>
+ </metadata>
+ <type-mapping>oracle.jdbc.driver.OracleDriver</type-mapping>
+ <local-transaction/>
+ <check-valid-connection-sql>SELECT * FROM DUAL</check-valid-connection-sql>
+ <exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
+ </exception-sorter-class-name>
+ <prepared-statement-cache-size>0</prepared-statement-cache-size>
+ <share-prepared-statements>false</share-prepared-statements>
+ <set-tx-query-timeout>false</set-tx-query-timeout>
+ <query-timeout>0</query-timeout>
+ <use-try-lock>60000</use-try-lock>
+ <driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
+ <connection-url>jdbc:oracle:oci:@youroracle-tns-name</connection-url>
+ </local-tx-datasource>
+</datasources>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyOracleNoTxDS-ds.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyOracleNoTxDS-ds.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyOracleNoTxDS-ds.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<datasources>
+ <no-tx-datasource>
+ <jndi-name>MyOracleNoTxDS</jndi-name>
+ <rar-name>jboss-local-jdbc.rar</rar-name>
+ <use-java-context>false</use-java-context>
+ <connection-definition>javax.sql.DataSource</connection-definition>
+ <jmx-invoker-name>jboss:service=invoker,type=jrmp</jmx-invoker-name>
+ <min-pool-size>0</min-pool-size>
+ <max-pool-size>0</max-pool-size>
+ <blocking-timeout-millis>0</blocking-timeout-millis>
+ <idle-timeout-minutes>0</idle-timeout-minutes>
+ <prefill>false</prefill>
+ <background-validation>false</background-validation>
+ <background-validation-millis>0</background-validation-millis>
+ <validate-on-match>false</validate-on-match>
+ <statistics-formatter>org.jboss.resource.statistic.pool.JBossDefaultSubPoolStatisticFormatter
+ </statistics-formatter>
+ <isSameRM-override-value>false</isSameRM-override-value>
+ <interleaving/>
+ <allocation-retry>0</allocation-retry>
+ <allocation-retry-wait-millis>0</allocation-retry-wait-millis>
+ <metadata>
+ <type-mapping>Oracle9i</type-mapping>
+ </metadata>
+ <type-mapping>oracle.jdbc.driver.OracleDriver</type-mapping>
+ <check-valid-connection-sql>SELECT * FROM DUAL</check-valid-connection-sql>
+ <exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
+ </exception-sorter-class-name>
+ <prepared-statement-cache-size>0</prepared-statement-cache-size>
+ <share-prepared-statements>false</share-prepared-statements>
+ <set-tx-query-timeout>false</set-tx-query-timeout>
+ <query-timeout>0</query-timeout>
+ <use-try-lock>60000</use-try-lock>
+ <driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
+ <connection-url>jdbc:oracle:oci:@youroracle-tns-name</connection-url>
+ </no-tx-datasource>
+</datasources>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyOracleXADS-ds.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyOracleXADS-ds.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyOracleXADS-ds.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<datasources>
+ <xa-datasource>
+ <jndi-name>MyOracleXADS</jndi-name>
+ <rar-name>jboss-xa-jdbc.rar</rar-name>
+ <use-java-context>false</use-java-context>
+ <connection-definition>javax.sql.DataSource</connection-definition>
+ <jmx-invoker-name>jboss:service=invoker,type=jrmp</jmx-invoker-name>
+ <min-pool-size>0</min-pool-size>
+ <max-pool-size>0</max-pool-size>
+ <blocking-timeout-millis>0</blocking-timeout-millis>
+ <idle-timeout-minutes>0</idle-timeout-minutes>
+ <prefill>false</prefill>
+ <background-validation>false</background-validation>
+ <background-validation-millis>0</background-validation-millis>
+ <validate-on-match>false</validate-on-match>
+ <no-tx-separate-pools/>
+ <statistics-formatter>org.jboss.resource.statistic.pool.JBossDefaultSubPoolStatisticFormatter
+ </statistics-formatter>
+ <isSameRM-override-value>false</isSameRM-override-value>
+ <allocation-retry>0</allocation-retry>
+ <allocation-retry-wait-millis>0</allocation-retry-wait-millis>
+ <metadata>
+ <type-mapping>Oracle9i</type-mapping>
+ </metadata>
+ <exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
+ </exception-sorter-class-name>
+ <prepared-statement-cache-size>0</prepared-statement-cache-size>
+ <share-prepared-statements>false</share-prepared-statements>
+ <set-tx-query-timeout>false</set-tx-query-timeout>
+ <query-timeout>0</query-timeout>
+ <use-try-lock>60000</use-try-lock>
+ <xa-datasource-class>oracle.jdbc.xa.client.OracleXADataSource</xa-datasource-class>
+ <xa-resource-timeout>0</xa-resource-timeout>
+ </xa-datasource>
+</datasources>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyQueue-service.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyQueue-service.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyQueue-service.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<server>
+ <mbean xmbean-dd="xmdesc/Queue-xmbean.xml" name="jboss.messaging.destination:service=Queue,name=MyQueue"
+ code="org.jboss.jms.server.destination.QueueService">
+ <annotation>
+ @org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)
+ </annotation>
+ <attribute name="JNDIName">MyQueue</attribute>
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+</server>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyQueueWithSecurityConfig-service.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyQueueWithSecurityConfig-service.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyQueueWithSecurityConfig-service.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<server>
+ <mbean xmbean-dd="xmdesc/Queue-xmbean.xml"
+ name="jboss.messaging.destination:service=Queue,name=MyQueueWithSecurityConfig"
+ code="org.jboss.jms.server.destination.QueueService">
+
+ <annotation>
+ @org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)
+ </annotation>
+
+ <attribute name="JNDIName">MyQueueWithSecurityConfig</attribute>
+ <attribute name="SecurityConfig">
+ <security>
+ <role name="consumer" read="true" write="false" create="false"/>
+ <role name="publisher" read="true" write="true" create="false"/>
+ <role name="administrator" read="true" write="true" create="true"/>
+ </security>
+ </attribute>
+
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+
+ </mbean>
+</server>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyTopic-service.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyTopic-service.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyTopic-service.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<server>
+ <mbean xmbean-dd="xmdesc/Topic-xmbean.xml" name="jboss.messaging.destination:service=Topic,name=MyTopic"
+ code="org.jboss.jms.server.destination.TopicService">
+ <annotation>
+ @org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.TopicServiceMO)
+ </annotation>
+ <attribute name="JNDIName">MyTopic</attribute>
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+</server>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyXATxCF-ds.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyXATxCF-ds.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/MyXATxCF-ds.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<connection-factories>
+ <tx-connection-factory>
+ <jndi-name>MyXATxCF</jndi-name>
+ <rar-name>jms-ra.rar</rar-name>
+ <use-java-context>true</use-java-context>
+ <connection-definition>org.jboss.resource.adapter.jms.JmsConnectionFactory</connection-definition>
+ <jmx-invoker-name>jboss:service=invoker,type=jrmp</jmx-invoker-name>
+ <min-pool-size>0</min-pool-size>
+ <max-pool-size>10</max-pool-size>
+ <blocking-timeout-millis>30000</blocking-timeout-millis>
+ <idle-timeout-minutes>30</idle-timeout-minutes>
+ <prefill>false</prefill>
+ <background-validation>false</background-validation>
+ <background-validation-millis>0</background-validation-millis>
+ <validate-on-match>true</validate-on-match>
+ <statistics-formatter>org.jboss.resource.statistic.pool.JBossDefaultSubPoolStatisticFormatter
+ </statistics-formatter>
+ <isSameRM-override-value>false</isSameRM-override-value>
+ <allocation-retry>0</allocation-retry>
+ <allocation-retry-wait-millis>5000</allocation-retry-wait-millis>
+ <metadata/>
+ <xa-resource-timeout>0</xa-resource-timeout>
+ <xa-transaction/>
+ </tx-connection-factory>
+</connection-factories>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/messaging/example-destinations-service.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/messaging/example-destinations-service.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/messaging/example-destinations-service.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,177 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ Example Messaging Destinations deployment descriptor.
+
+ $Id: example-destinations-service.xml 588 2009-07-27 17:12:55Z ips $
+ -->
+
+<server>
+
+ <!--
+ Example destinations.
+ -->
+
+ <mbean code="org.jboss.jms.server.destination.TopicService"
+ name="jboss.messaging.destination:service=Topic,name=testTopic"
+ xmbean-dd="xmdesc/Topic-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="SecurityConfig">
+ <security>
+ <role name="guest" read="true" write="true"/>
+ <role name="publisher" read="true" write="true" create="false"/>
+ <role name="durpublisher" read="true" write="true" create="true"/>
+ </security>
+ </attribute>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.TopicService"
+ name="jboss.messaging.destination:service=Topic,name=securedTopic"
+ xmbean-dd="xmdesc/Topic-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="SecurityConfig">
+ <security>
+ <role name="publisher" read="true" write="true" create="false"/>
+ </security>
+ </attribute>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.TopicService"
+ name="jboss.messaging.destination:service=Topic,name=testDurableTopic"
+ xmbean-dd="xmdesc/Topic-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="SecurityConfig">
+ <security>
+ <role name="guest" read="true" write="true"/>
+ <role name="publisher" read="true" write="true" create="false"/>
+ <role name="durpublisher" read="true" write="true" create="true"/>
+ </security>
+ </attribute>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=testQueue"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="SecurityConfig">
+ <security>
+ <role name="guest" read="true" write="true"/>
+ <role name="publisher" read="true" write="true" create="false"/>
+ <role name="noacc" read="false" write="false" create="false"/>
+ </security>
+ </attribute>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=A"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=B"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=C"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=D"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=ex"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+ <!-- It's possible for indiviual queues and topics to use a specific queue for
+an expiry or DLQ -->
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=PrivateDLQ"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=PrivateExpiryQueue"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=QueueWithOwnDLQAndExpiryQueue"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="DLQ">jboss.messaging.destination:service=Queue,name=PrivateDLQ</attribute>
+ <attribute name="ExpiryQueue">jboss.messaging.destination:service=Queue,name=PrivateExpiryQueue</attribute>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.TopicService"
+ name="jboss.messaging.destination:service=Topic,name=TopicWithOwnDLQAndExpiryQueue"
+ xmbean-dd="xmdesc/Topic-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="DLQ">jboss.messaging.destination:service=Queue,name=PrivateDLQ</attribute>
+ <attribute name="ExpiryQueue">jboss.messaging.destination:service=Queue,name=PrivateExpiryQueue</attribute>
+ </mbean>
+
+ <!-- Queues and Topics can also specify their own redelivery delay -->
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=QueueWithOwnRedeliveryDelay"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="RedeliveryDelay">5000</attribute>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.TopicService"
+ name="jboss.messaging.destination:service=Topic,name=TopicWithOwnRedeliveryDelay"
+ xmbean-dd="xmdesc/Topic-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="RedeliveryDelay">5000</attribute>
+ </mbean>
+
+ <!--
+ Example clustered destinations.
+ -->
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=testDistributedQueue"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="Clustered">true</attribute>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.TopicService"
+ name="jboss.messaging.destination:service=Topic,name=testDistributedTopic"
+ xmbean-dd="xmdesc/Topic-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="Clustered">true</attribute>
+ </mbean>
+
+</server>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/vhosts-test.war
===================================================================
(Binary files differ)
Property changes on: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/all/deploy/vhosts-test.war
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/conf/jboss-log4j.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/conf/jboss-log4j.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/conf/jboss-log4j.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,366 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
+
+<!-- ===================================================================== -->
+<!-- -->
+<!-- Log4j Configuration -->
+<!-- -->
+<!-- ===================================================================== -->
+
+<!-- $Id: jboss-log4j.xml 673 2009-08-14 23:36:39Z ips $ -->
+
+<!--
+ | For more configuration information and examples see the Jakarta Log4j
+ | owebsite: http://jakarta.apache.org/log4j
+ -->
+
+<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
+
+ <!-- ================================= -->
+ <!-- Preserve messages in a local file -->
+ <!-- ================================= -->
+
+ <!-- A time/date based rolling appender -->
+ <appender name="FILE" class="org.jboss.logging.appender.DailyRollingFileAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="File" value="${jboss.server.log.dir}/server.log"/>
+ <param name="Append" value="false"/>
+
+ <!-- Rollover at midnight each day -->
+ <param name="DatePattern" value="'.'yyyy-MM-dd"/>
+
+ <!-- Rollover at the top of each hour
+ <param name="DatePattern" value="'.'yyyy-MM-dd-HH"/>
+ -->
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <!-- The default pattern: Date Priority [Category] (Thread) Message\n -->
+ <param name="ConversionPattern" value="%d %-5p [%c] (%t) %m%n"/>
+
+ <!-- The full pattern: Date MS Priority [Category] (Thread:NDC) Message\n
+ <param name="ConversionPattern" value="%d %-5r %-5p [%c] (%t:%x) %m%n"/>
+ -->
+ </layout>
+ </appender>
+
+ <!-- A size based file rolling appender
+ <appender name="FILE" class="org.jboss.logging.appender.RollingFileAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="File" value="${jboss.server.log.dir}/server.log"/>
+ <param name="Append" value="false"/>
+ <param name="MaxFileSize" value="500KB"/>
+ <param name="MaxBackupIndex" value="1"/>
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d %-5p [%c] %m%n"/>
+ </layout>
+ </appender>
+ -->
+
+ <!-- ============================== -->
+ <!-- Append messages to the console -->
+ <!-- ============================== -->
+
+ <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="Target" value="System.out"/>
+ <!--<param name="Threshold" value="INFO"/>-->
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <!-- The default pattern: Date Priority [Category] Message\n -->
+ <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] %m%n"/>
+ </layout>
+ </appender>
+
+ <!-- ====================== -->
+ <!-- More Appender examples -->
+ <!-- ====================== -->
+
+ <!-- Buffer events and log them asynchronously
+ <appender name="ASYNC" class="org.apache.log4j.AsyncAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <appender-ref ref="FILE"/>
+ <appender-ref ref="CONSOLE"/>
+ <appender-ref ref="SMTP"/>
+ </appender>
+ -->
+
+ <!-- EMail events to an administrator
+ <appender name="SMTP" class="org.apache.log4j.net.SMTPAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="Threshold" value="ERROR"/>
+ <param name="To" value="admin(a)myhost.domain.com"/>
+ <param name="From" value="nobody(a)myhost.domain.com"/>
+ <param name="Subject" value="JBoss Sever Errors"/>
+ <param name="SMTPHost" value="localhost"/>
+ <param name="BufferSize" value="10"/>
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="[%d{ABSOLUTE},%c{1}] %m%n"/>
+ </layout>
+ </appender>
+ -->
+
+ <!-- Syslog events
+ <appender name="SYSLOG" class="org.apache.log4j.net.SyslogAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="Facility" value="LOCAL7"/>
+ <param name="FacilityPrinting" value="true"/>
+ <param name="SyslogHost" value="localhost"/>
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="[%d{ABSOLUTE},%c{1}] %m%n"/>
+ </layout>
+ </appender>
+ -->
+
+ <!-- Log events to JMS (requires a topic to be created)
+ <appender name="JMS" class="org.apache.log4j.net.JMSAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="Threshold" value="ERROR"/>
+ <param name="TopicConnectionFactoryBindingName" value="java:/ConnectionFactory"/>
+ <param name="TopicBindingName" value="topic/MyErrorsTopic"/>
+ </appender>
+ -->
+
+ <!-- Log events through SNMP
+ <appender name="TRAP_LOG" class="org.apache.log4j.ext.SNMPTrapAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="ImplementationClassName" value="org.apache.log4j.ext.JoeSNMPTrapSender"/>
+ <param name="ManagementHost" value="127.0.0.1"/>
+ <param name="ManagementHostTrapListenPort" value="162"/>
+ <param name="EnterpriseOID" value="1.3.6.1.4.1.24.0"/>
+ <param name="LocalIPAddress" value="127.0.0.1"/>
+ <param name="LocalTrapSendPort" value="161"/>
+ <param name="GenericTrapType" value="6"/>
+ <param name="SpecificTrapType" value="12345678"/>
+ <param name="CommunityString" value="public"/>
+ <param name="ForwardStackTraceWithTrap" value="true"/>
+ <param name="Threshold" value="DEBUG"/>
+ <param name="ApplicationTrapOID" value="1.3.6.1.4.1.24.12.10.22.64"/>
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d,%p,[%t],[%c],%m%n"/>
+ </layout>
+ </appender>
+ -->
+
+ <!-- Emit events as JMX notifications
+ <appender name="JMX" class="org.jboss.monitor.services.JMXNotificationAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+
+ <param name="Threshold" value="WARN"/>
+ <param name="ObjectName" value="jboss.system:service=Logging,type=JMXNotificationAppender"/>
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d %-5p [%c] %m"/>
+ </layout>
+ </appender>
+ -->
+
+ <!-- Security AUDIT Appender -->
+ <appender name="AUDIT" class="org.jboss.logging.appender.DailyRollingFileAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="File" value="${jboss.server.log.dir}/audit.log"/>
+ <param name="Append" value="true"/>
+ <param name="DatePattern" value="'.'yyyy-MM-dd"/>
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d %-5p [%c] (%t:%x) %m%n"/>
+ </layout>
+ </appender>
+
+ <!-- ================ -->
+ <!-- Limit categories -->
+ <!-- ================ -->
+
+ <!-- Limit the org.apache category to INFO as its DEBUG is verbose -->
+ <category name="org.apache">
+ <priority value="INFO"/>
+ </category>
+
+ <!-- Limit JSF logging to DEBUG. FINER and FINEST will not be logged -->
+ <category name="javax.enterprise.resource.webcontainer.jsf">
+ <priority value="DEBUG"/>
+ </category>
+
+ <!-- Limit the jacorb category to WARN as its INFO is verbose -->
+ <category name="jacorb">
+ <priority value="WARN"/>
+ </category>
+
+ <!-- Set the logging level of the JSF implementation -->
+ <category name="javax.enterprise.resource.webcontainer.jsf">
+ <priority value="INFO"/>
+ </category>
+
+ <!-- Limit the org.jgroups category to WARN as its INFO is verbose -->
+ <category name="org.jgroups">
+ <priority value="WARN"/>
+ </category>
+
+ <!-- Limit the org.quartz category to INFO as its DEBUG is verbose -->
+ <category name="org.quartz">
+ <priority value="INFO"/>
+ </category>
+
+ <!-- Limit JBoss categories
+ <category name="org.jboss">
+ <priority value="INFO"/>
+ </category>
+ -->
+
+ <!-- Limit the JSR77 categories -->
+ <category name="org.jboss.management">
+ <priority value="INFO"/>
+ </category>
+
+ <!-- Show the evolution of the DataSource pool in the logs [inUse/Available/Max]
+ <category name="org.jboss.resource.connectionmanager.JBossManagedConnectionPool">
+ <priority value="TRACE"/>
+ </category>
+ -->
+
+ <!-- Category specifically for Security Audit Provider -->
+ <category name="org.jboss.security.audit.providers.LogAuditProvider" additivity="false">
+ <priority value="TRACE"/>
+ <appender-ref ref="AUDIT"/>
+ </category>
+
+ <!-- Limit the org.jboss.serial (jboss-serialization) to INFO as its DEBUG is verbose -->
+ <category name="org.jboss.serial">
+ <priority value="INFO"/>
+ </category>
+
+ <!-- Decrease the priority threshold for the org.jboss.varia category
+ <category name="org.jboss.varia">
+ <priority value="DEBUG"/>
+ </category>
+ -->
+
+ <!-- Enable JBossWS message tracing
+ <category name="org.jboss.ws.core.MessageTrace">
+ <priority value="TRACE"/>
+ </category>
+ -->
+
+ <category name="org.jboss.ejb3">
+ <priority value="WARN"/>
+ </category>
+
+ <category name="org.jboss.ejb">
+ <priority value="WARN"/>
+ </category>
+
+ <category name="org.ajax4jsf">
+ <priority value="WARN"/>
+ </category>
+
+ <!--
+ | An example of enabling the custom TRACE level priority that is used
+ | by the JBoss internals to diagnose low level details. This example
+ | turns on TRACE level msgs for the org.jboss.ejb.plugins package and its
+ | subpackages. This will produce A LOT of logging output.
+ |
+ | Note: since jboss AS 4.2.x, the trace level is supported natively by
+ | log4j, so although the custom org.jboss.logging.XLevel priority will
+ | still work, there is no need to use it. The two examples that follow
+ | will both enable trace logging.
+ <category name="org.jboss.system">
+ <priority value="TRACE" class="org.jboss.logging.XLevel"/>
+ </category>
+ <category name="org.jboss.ejb.plugins">
+ <priority value="TRACE"/>
+ </category>
+ -->
+
+ <!--
+ | Logs these events to SNMP:
+ - server starts/stops
+ - cluster evolution (node death/startup)
+ - When an EJB archive is deployed (and associated verified messages)
+ - When an EAR archive is deployed
+
+ <category name="org.jboss.system.server.Server">
+ <priority value="INFO" />
+ <appender-ref ref="TRAP_LOG"/>
+ </category>
+
+ <category name="org.jboss.ha.framework.interfaces.HAPartition.lifecycle">
+ <priority value="INFO" />
+ <appender-ref ref="TRAP_LOG"/>
+ </category>
+
+ <category name="org.jboss.deployment.MainDeployer">
+ <priority value="ERROR" />
+ <appender-ref ref="TRAP_LOG"/>
+ </category>
+
+ <category name="org.jboss.ejb.EJBDeployer">
+ <priority value="INFO" />
+ <appender-ref ref="TRAP_LOG"/>
+ </category>
+
+ <category name="org.jboss.deployment.EARDeployer">
+ <priority value="INFO" />
+ <appender-ref ref="TRAP_LOG"/>
+ </category>
+ -->
+
+ <!-- Clustering logging -->
+ <!-- Uncomment the following to redirect the org.jgroups and
+ org.jboss.ha categories to a cluster.log file.
+
+ <appender name="CLUSTER" class="org.jboss.logging.appender.RollingFileAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="File" value="${jboss.server.log.dir}/cluster.log"/>
+ <param name="Append" value="false"/>
+ <param name="MaxFileSize" value="500KB"/>
+ <param name="MaxBackupIndex" value="1"/>
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d %-5p [%c] %m%n"/>
+ </layout>
+ </appender>
+ <category name="org.jgroups">
+ <priority value="DEBUG" />
+ <appender-ref ref="CLUSTER"/>
+ </category>
+ <category name="org.jboss.ha">
+ <priority value="DEBUG" />
+ <appender-ref ref="CLUSTER"/>
+ </category>
+ -->
+
+ <category name="org.jboss.on.embedded">
+ <priority value="DEBUG"/>
+ </category>
+ <category name="org.rhq.plugins.jbossas5">
+ <priority value="DEBUG"/>
+ </category>
+ <category name="org.jboss.seam">
+ <priority value="WARN"/>
+ </category>
+ <category name="com.sun">
+ <priority value="WARN"/>
+ </category>
+ <category name="org.rhq.core.pc.inventory.RuntimeDiscoveryExecutor">
+ <priority value="WARN"/>
+ </category>
+
+ <category name="org.jboss.managed.plugins.factory.AbstractManagedObjectPopulator">
+ <priority value="ERROR"/>
+ </category>
+
+ <!-- Limit the verbose MC4J EMS (lib used by admin-console) categories -->
+ <category name="org.mc4j.ems">
+ <priority value="WARN"/>
+ </category>
+
+ <!-- ======================= -->
+ <!-- Setup the Root category -->
+ <!-- ======================= -->
+
+ <root>
+ <level value="INFO"/>
+ <appender-ref ref="CONSOLE"/>
+ <appender-ref ref="FILE"/>
+ </root>
+
+</log4j:configuration>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyLocalTxCF-ds.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyLocalTxCF-ds.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyLocalTxCF-ds.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<connection-factories>
+ <tx-connection-factory>
+ <jndi-name>MyLocalTxCF</jndi-name>
+ <rar-name>jms-ra.rar</rar-name>
+ <use-java-context>true</use-java-context>
+ <connection-definition>org.jboss.resource.adapter.jms.JmsConnectionFactory</connection-definition>
+ <jmx-invoker-name>jboss:service=invoker,type=jrmp</jmx-invoker-name>
+ <min-pool-size>0</min-pool-size>
+ <max-pool-size>10</max-pool-size>
+ <blocking-timeout-millis>30000</blocking-timeout-millis>
+ <idle-timeout-minutes>30</idle-timeout-minutes>
+ <prefill>false</prefill>
+ <background-validation>false</background-validation>
+ <background-validation-millis>0</background-validation-millis>
+ <validate-on-match>true</validate-on-match>
+ <statistics-formatter>org.jboss.resource.statistic.pool.JBossDefaultSubPoolStatisticFormatter
+ </statistics-formatter>
+ <isSameRM-override-value>false</isSameRM-override-value>
+ <allocation-retry>0</allocation-retry>
+ <allocation-retry-wait-millis>5000</allocation-retry-wait-millis>
+ <metadata/>
+ <local-transaction/>
+ <xa-resource-timeout>0</xa-resource-timeout>
+ </tx-connection-factory>
+</connection-factories>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyNoTxCF-ds.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyNoTxCF-ds.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyNoTxCF-ds.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<connection-factories>
+ <no-tx-connection-factory>
+ <jndi-name>MyNoTxCF</jndi-name>
+ <rar-name>jms-ra.rar</rar-name>
+ <use-java-context>true</use-java-context>
+ <connection-definition>org.jboss.resource.adapter.jms.JmsConnectionFactory</connection-definition>
+ <jmx-invoker-name>jboss:service=invoker,type=jrmp</jmx-invoker-name>
+ <min-pool-size>0</min-pool-size>
+ <max-pool-size>10</max-pool-size>
+ <blocking-timeout-millis>30000</blocking-timeout-millis>
+ <idle-timeout-minutes>30</idle-timeout-minutes>
+ <prefill>false</prefill>
+ <background-validation>false</background-validation>
+ <background-validation-millis>0</background-validation-millis>
+ <validate-on-match>true</validate-on-match>
+ <statistics-formatter>org.jboss.resource.statistic.pool.JBossDefaultSubPoolStatisticFormatter
+ </statistics-formatter>
+ <isSameRM-override-value>false</isSameRM-override-value>
+ <interleaving/>
+ <allocation-retry>0</allocation-retry>
+ <allocation-retry-wait-millis>5000</allocation-retry-wait-millis>
+ <metadata/>
+ </no-tx-connection-factory>
+</connection-factories>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyOracleLocalTxDS-ds.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyOracleLocalTxDS-ds.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyOracleLocalTxDS-ds.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<datasources>
+ <local-tx-datasource>
+ <jndi-name>MyOracleLocalTxDS</jndi-name>
+ <rar-name>jboss-local-jdbc.rar</rar-name>
+ <use-java-context>false</use-java-context>
+ <connection-definition>javax.sql.DataSource</connection-definition>
+ <jmx-invoker-name>jboss:service=invoker,type=jrmp</jmx-invoker-name>
+ <min-pool-size>0</min-pool-size>
+ <max-pool-size>0</max-pool-size>
+ <blocking-timeout-millis>0</blocking-timeout-millis>
+ <idle-timeout-minutes>0</idle-timeout-minutes>
+ <prefill>false</prefill>
+ <background-validation>false</background-validation>
+ <background-validation-millis>0</background-validation-millis>
+ <validate-on-match>false</validate-on-match>
+ <statistics-formatter>org.jboss.resource.statistic.pool.JBossDefaultSubPoolStatisticFormatter
+ </statistics-formatter>
+ <isSameRM-override-value>false</isSameRM-override-value>
+ <allocation-retry>0</allocation-retry>
+ <allocation-retry-wait-millis>0</allocation-retry-wait-millis>
+ <metadata>
+ <type-mapping>Oracle9i</type-mapping>
+ </metadata>
+ <type-mapping>oracle.jdbc.driver.OracleDriver</type-mapping>
+ <local-transaction/>
+ <check-valid-connection-sql>SELECT * FROM DUAL</check-valid-connection-sql>
+ <exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
+ </exception-sorter-class-name>
+ <prepared-statement-cache-size>0</prepared-statement-cache-size>
+ <share-prepared-statements>false</share-prepared-statements>
+ <set-tx-query-timeout>false</set-tx-query-timeout>
+ <query-timeout>0</query-timeout>
+ <use-try-lock>60000</use-try-lock>
+ <driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
+ <connection-url>jdbc:oracle:oci:@youroracle-tns-name</connection-url>
+ </local-tx-datasource>
+</datasources>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyOracleNoTxDS-ds.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyOracleNoTxDS-ds.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyOracleNoTxDS-ds.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<datasources>
+ <no-tx-datasource>
+ <jndi-name>MyOracleNoTxDS</jndi-name>
+ <rar-name>jboss-local-jdbc.rar</rar-name>
+ <use-java-context>false</use-java-context>
+ <connection-definition>javax.sql.DataSource</connection-definition>
+ <jmx-invoker-name>jboss:service=invoker,type=jrmp</jmx-invoker-name>
+ <min-pool-size>0</min-pool-size>
+ <max-pool-size>0</max-pool-size>
+ <blocking-timeout-millis>0</blocking-timeout-millis>
+ <idle-timeout-minutes>0</idle-timeout-minutes>
+ <prefill>false</prefill>
+ <background-validation>false</background-validation>
+ <background-validation-millis>0</background-validation-millis>
+ <validate-on-match>false</validate-on-match>
+ <statistics-formatter>org.jboss.resource.statistic.pool.JBossDefaultSubPoolStatisticFormatter
+ </statistics-formatter>
+ <isSameRM-override-value>false</isSameRM-override-value>
+ <interleaving/>
+ <allocation-retry>0</allocation-retry>
+ <allocation-retry-wait-millis>0</allocation-retry-wait-millis>
+ <metadata>
+ <type-mapping>Oracle9i</type-mapping>
+ </metadata>
+ <type-mapping>oracle.jdbc.driver.OracleDriver</type-mapping>
+ <check-valid-connection-sql>SELECT * FROM DUAL</check-valid-connection-sql>
+ <exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
+ </exception-sorter-class-name>
+ <prepared-statement-cache-size>0</prepared-statement-cache-size>
+ <share-prepared-statements>false</share-prepared-statements>
+ <set-tx-query-timeout>false</set-tx-query-timeout>
+ <query-timeout>0</query-timeout>
+ <use-try-lock>60000</use-try-lock>
+ <driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
+ <connection-url>jdbc:oracle:oci:@youroracle-tns-name</connection-url>
+ </no-tx-datasource>
+</datasources>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyOracleXADS-ds.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyOracleXADS-ds.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyOracleXADS-ds.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<datasources>
+ <xa-datasource>
+ <jndi-name>MyOracleXADS</jndi-name>
+ <rar-name>jboss-xa-jdbc.rar</rar-name>
+ <use-java-context>false</use-java-context>
+ <connection-definition>javax.sql.DataSource</connection-definition>
+ <jmx-invoker-name>jboss:service=invoker,type=jrmp</jmx-invoker-name>
+ <min-pool-size>0</min-pool-size>
+ <max-pool-size>0</max-pool-size>
+ <blocking-timeout-millis>0</blocking-timeout-millis>
+ <idle-timeout-minutes>0</idle-timeout-minutes>
+ <prefill>false</prefill>
+ <background-validation>false</background-validation>
+ <background-validation-millis>0</background-validation-millis>
+ <validate-on-match>false</validate-on-match>
+ <no-tx-separate-pools/>
+ <statistics-formatter>org.jboss.resource.statistic.pool.JBossDefaultSubPoolStatisticFormatter
+ </statistics-formatter>
+ <isSameRM-override-value>false</isSameRM-override-value>
+ <allocation-retry>0</allocation-retry>
+ <allocation-retry-wait-millis>0</allocation-retry-wait-millis>
+ <metadata>
+ <type-mapping>Oracle9i</type-mapping>
+ </metadata>
+ <exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
+ </exception-sorter-class-name>
+ <prepared-statement-cache-size>0</prepared-statement-cache-size>
+ <share-prepared-statements>false</share-prepared-statements>
+ <set-tx-query-timeout>false</set-tx-query-timeout>
+ <query-timeout>0</query-timeout>
+ <use-try-lock>60000</use-try-lock>
+ <xa-datasource-class>oracle.jdbc.xa.client.OracleXADataSource</xa-datasource-class>
+ <xa-resource-timeout>0</xa-resource-timeout>
+ </xa-datasource>
+</datasources>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyQueue-service.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyQueue-service.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyQueue-service.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<server>
+ <mbean xmbean-dd="xmdesc/Queue-xmbean.xml" name="jboss.messaging.destination:service=Queue,name=MyQueue"
+ code="org.jboss.jms.server.destination.QueueService">
+ <annotation>
+ @org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)
+ </annotation>
+ <attribute name="JNDIName">MyQueue</attribute>
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+</server>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyQueueWithSecurityConfig-service.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyQueueWithSecurityConfig-service.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyQueueWithSecurityConfig-service.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<server>
+ <mbean xmbean-dd="xmdesc/Queue-xmbean.xml"
+ name="jboss.messaging.destination:service=Queue,name=MyQueueWithSecurityConfig"
+ code="org.jboss.jms.server.destination.QueueService">
+
+ <annotation>
+ @org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)
+ </annotation>
+
+ <attribute name="JNDIName">MyQueueWithSecurityConfig</attribute>
+ <attribute name="SecurityConfig">
+ <security>
+ <role name="consumer" read="true" write="false" create="false"/>
+ <role name="publisher" read="true" write="true" create="false"/>
+ <role name="administrator" read="true" write="true" create="true"/>
+ </security>
+ </attribute>
+
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+
+ </mbean>
+</server>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyTopic-service.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyTopic-service.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyTopic-service.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<server>
+ <mbean xmbean-dd="xmdesc/Topic-xmbean.xml" name="jboss.messaging.destination:service=Topic,name=MyTopic"
+ code="org.jboss.jms.server.destination.TopicService">
+ <annotation>
+ @org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.TopicServiceMO)
+ </annotation>
+ <attribute name="JNDIName">MyTopic</attribute>
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+</server>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyXATxCF-ds.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyXATxCF-ds.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/MyXATxCF-ds.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<connection-factories>
+ <tx-connection-factory>
+ <jndi-name>MyXATxCF</jndi-name>
+ <rar-name>jms-ra.rar</rar-name>
+ <use-java-context>true</use-java-context>
+ <connection-definition>org.jboss.resource.adapter.jms.JmsConnectionFactory</connection-definition>
+ <jmx-invoker-name>jboss:service=invoker,type=jrmp</jmx-invoker-name>
+ <min-pool-size>0</min-pool-size>
+ <max-pool-size>10</max-pool-size>
+ <blocking-timeout-millis>30000</blocking-timeout-millis>
+ <idle-timeout-minutes>30</idle-timeout-minutes>
+ <prefill>false</prefill>
+ <background-validation>false</background-validation>
+ <background-validation-millis>0</background-validation-millis>
+ <validate-on-match>true</validate-on-match>
+ <statistics-formatter>org.jboss.resource.statistic.pool.JBossDefaultSubPoolStatisticFormatter
+ </statistics-formatter>
+ <isSameRM-override-value>false</isSameRM-override-value>
+ <allocation-retry>0</allocation-retry>
+ <allocation-retry-wait-millis>5000</allocation-retry-wait-millis>
+ <metadata/>
+ <xa-resource-timeout>0</xa-resource-timeout>
+ <xa-transaction/>
+ </tx-connection-factory>
+</connection-factories>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/messaging/example-destinations-service.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/messaging/example-destinations-service.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/messaging/example-destinations-service.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,177 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ Example Messaging Destinations deployment descriptor.
+
+ $Id: example-destinations-service.xml 587 2009-07-27 17:11:34Z ips $
+ -->
+
+<server>
+
+ <!--
+ Example destinations.
+ -->
+
+ <mbean code="org.jboss.jms.server.destination.TopicService"
+ name="jboss.messaging.destination:service=Topic,name=testTopic"
+ xmbean-dd="xmdesc/Topic-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="SecurityConfig">
+ <security>
+ <role name="guest" read="true" write="true"/>
+ <role name="publisher" read="true" write="true" create="false"/>
+ <role name="durpublisher" read="true" write="true" create="true"/>
+ </security>
+ </attribute>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.TopicService"
+ name="jboss.messaging.destination:service=Topic,name=securedTopic"
+ xmbean-dd="xmdesc/Topic-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="SecurityConfig">
+ <security>
+ <role name="publisher" read="true" write="true" create="false"/>
+ </security>
+ </attribute>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.TopicService"
+ name="jboss.messaging.destination:service=Topic,name=testDurableTopic"
+ xmbean-dd="xmdesc/Topic-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="SecurityConfig">
+ <security>
+ <role name="guest" read="true" write="true"/>
+ <role name="publisher" read="true" write="true" create="false"/>
+ <role name="durpublisher" read="true" write="true" create="true"/>
+ </security>
+ </attribute>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=testQueue"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="SecurityConfig">
+ <security>
+ <role name="guest" read="true" write="true"/>
+ <role name="publisher" read="true" write="true" create="false"/>
+ <role name="noacc" read="false" write="false" create="false"/>
+ </security>
+ </attribute>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=A"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=B"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=C"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=D"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=ex"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+ <!-- It's possible for indiviual queues and topics to use a specific queue for
+an expiry or DLQ -->
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=PrivateDLQ"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=PrivateExpiryQueue"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=QueueWithOwnDLQAndExpiryQueue"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="DLQ">jboss.messaging.destination:service=Queue,name=PrivateDLQ</attribute>
+ <attribute name="ExpiryQueue">jboss.messaging.destination:service=Queue,name=PrivateExpiryQueue</attribute>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.TopicService"
+ name="jboss.messaging.destination:service=Topic,name=TopicWithOwnDLQAndExpiryQueue"
+ xmbean-dd="xmdesc/Topic-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="DLQ">jboss.messaging.destination:service=Queue,name=PrivateDLQ</attribute>
+ <attribute name="ExpiryQueue">jboss.messaging.destination:service=Queue,name=PrivateExpiryQueue</attribute>
+ </mbean>
+
+ <!-- Queues and Topics can also specify their own redelivery delay -->
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=QueueWithOwnRedeliveryDelay"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="RedeliveryDelay">5000</attribute>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.TopicService"
+ name="jboss.messaging.destination:service=Topic,name=TopicWithOwnRedeliveryDelay"
+ xmbean-dd="xmdesc/Topic-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="RedeliveryDelay">5000</attribute>
+ </mbean>
+
+ <!--
+ Example clustered destinations.
+ -->
+
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.messaging.destination:service=Queue,name=testDistributedQueue"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="Clustered">true</attribute>
+ </mbean>
+
+ <mbean code="org.jboss.jms.server.destination.TopicService"
+ name="jboss.messaging.destination:service=Topic,name=testDistributedTopic"
+ xmbean-dd="xmdesc/Topic-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ <attribute name="Clustered">true</attribute>
+ </mbean>
+
+</server>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/vhosts-test.war
===================================================================
(Binary files differ)
Property changes on: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/etc/overlay/server/default/deploy/vhosts-test.war
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/pom.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/pom.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/pom.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,220 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.jboss.jopr</groupId>
+ <artifactId>jopr-embedded-parent</artifactId>
+ <version>1.4.0-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.jboss.jopr</groupId>
+ <artifactId>jopr-embedded-jbas6</artifactId>
+ <packaging>war</packaging>
+ <name>JBossAS 6.x Administration Console</name>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/embjopr/trunk/jbas6/</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/embjopr/trunk/jbas6/</developerConnection>
+ </scm>
+
+ <properties>
+ <warDir>${basedir}/target/${project.build.finalName}</warDir>
+ <warFile>${warDir}.war</warFile>
+ <contextRoot>admin-console</contextRoot>
+ <product.name>JBoss AS Admin Console</product.name>
+ </properties>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>org.jboss.jopr</groupId>
+ <artifactId>jopr-embedded-core</artifactId>
+ <version>${project.version}</version>
+ <type>war</type>
+ </dependency>
+
+ </dependencies>
+
+ <build>
+ <finalName>${jbas6.finalName}</finalName>
+ <plugins>
+ <plugin>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.0</version>
+ <executions>
+ <execution>
+ <id>copy-dist-plugins</id>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>${warDir}/plugins</outputDirectory>
+ <artifactItems>
+ <!-- the AS5 plugin itself -->
+ <artifactItem>
+ <groupId>${jopr.groupId}</groupId>
+ <artifactId>jopr-jboss-as-5-plugin</artifactId>
+ <version>${jopr.version}</version>
+ </artifactItem>
+
+ <!-- the plugins the AS5 plugin depends on -->
+ <artifactItem>
+ <groupId>${rhq.groupId}</groupId>
+ <artifactId>rhq-jmx-plugin</artifactId>
+ <version>${rhq.version}</version>
+ </artifactItem>
+
+ <!-- other plugins -->
+ <artifactItem>
+ <groupId>${jopr.groupId}</groupId>
+ <artifactId>jopr-hibernate-plugin</artifactId>
+ <version>${jopr.version}</version>
+ </artifactItem>
+
+ <artifactItem>
+ <groupId>${jopr.groupId}</groupId>
+ <artifactId>jopr-jboss-cache-v3-plugin</artifactId>
+ <version>${jopr.version}</version>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <configuration>
+ <webResources>
+ <resource>
+ <filtering>true</filtering>
+ <directory>
+ ${basedir}/src/main/webapp
+ </directory>
+ </resource>
+ </webResources>
+ <overlays>
+ <overlay>
+ <!-- empty groupId/artifactId detected as the current build.
+ earlier overlays win over later overlays, so put ourselves first. -->
+ </overlay>
+ <overlay>
+ <groupId>org.jboss.jopr</groupId>
+ <artifactId>jopr-embedded-core</artifactId>
+ </overlay>
+ </overlays>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <configuration>
+ <tasks>
+ <echo>*** Overlaying messages...</echo>
+ <replaceregexp file="${warDir}/WEB-INF/classes/messages.properties" match="product.name=(.*)" replace="product.name=${product.name}" byline="true" />
+ <replaceregexp file="${warDir}/WEB-INF/classes/messages.properties" match="default.windowTitle=(.*)" replace="default.windowTitle=${product.name}" byline="true" />
+ <zip destfile="${warFile}" basedir="${warDir}" includes="WEB-INF/classes/messages.properties" update="true" />
+ <echo>*** Deleting jboss-seam-jul-*.jar ...</echo>
+ <delete file="${warDir}/WEB-INF/lib/jboss-seam-jul-*.jar" quiet="false"/>
+ </tasks>
+ </configuration>
+ <goals> <goal>run</goal> </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-nodeps</artifactId>
+ <version>1.7.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-apache-regexp</artifactId>
+ <version>1.7.1</version>
+ </dependency>
+ <dependency>
+ <artifactId>jakarta-regexp</artifactId>
+ <groupId>jakarta-regexp</groupId>
+ <version>1.4</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+
+ </plugins>
+ </build>
+
+ <profiles>
+ <profile>
+ <id>dev</id>
+
+ <properties>
+ <warDeployDir>${jbas5.configDir}/deploy/${project.build.finalName}.war</warDeployDir>
+ </properties>
+
+ <build>
+ <plugins>
+
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.1</version>
+ <executions>
+
+ <execution>
+ <id>deploy</id>
+ <phase>package</phase>
+ <configuration>
+ <tasks>
+ <property name="deployment.dir" location="${warDeployDir}" />
+ <echo>*** Copying updated files from
+ target${file.separator}${project.build.finalName} to <warDir>...
+ </echo>
+ <touch file="${basedir}/target/${project.build.finalName}/WEB-INF/classes/messages.properties" />
+ <copy todir="${deployment.dir}" verbose="${embedded.verbose}">
+ <fileset dir="${basedir}/target/${project.build.finalName}" />
+ </copy>
+ <unjar src="${project.build.directory}/${project.build.finalName}.war" dest="${deployment.dir}">
+ <patternset>
+ <include name="META-INF/**" />
+ </patternset>
+ </unjar>
+
+ <!--
+ <echo>*** Touching <warDir>/WEB-INF/web.xml to force redeploy...</echo>
+ <touch file="${deployment.dir}/WEB-INF/web.xml" />
+ -->
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+
+ <execution>
+ <id>undeploy</id>
+ <phase>clean</phase>
+ <configuration>
+ <tasks>
+ <property name="deployment.dir" location="${warDeployDir}" />
+ <echo>*** Deleting ${deployment.dir}${file.separator}...</echo>
+ <delete dir="${deployment.dir}" />
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+
+ </executions>
+ </plugin>
+
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+</project>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/src/main/webapp/META-INF/jboss-structure.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/src/main/webapp/META-INF/jboss-structure.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/src/main/webapp/META-INF/jboss-structure.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Fix for EMBJOPR-21: ignore the EJB3 related metadata -->
+<structure>
+ <context>
+ <path name=""/>
+ <metaDataPath>
+ <path name="WEB-INF"/>
+ </metaDataPath>
+ <classpath>
+ <path name="WEB-INF/classes"/>
+ <path name="WEB-INF/lib" suffixes=".jar"/>
+ </classpath>
+ </context>
+</structure>
Added: branches/EmbJopr-1.4.0-SN-EAP5/jbas6/src/main/webapp/WEB-INF/jboss-web.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jbas6/src/main/webapp/WEB-INF/jboss-web.xml (rev 0)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jbas6/src/main/webapp/WEB-INF/jboss-web.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -0,0 +1,39 @@
+<?xml version="1.0"?>
+
+<!DOCTYPE jboss-web PUBLIC
+ "-//JBoss//DTD Web Application 5.0//EN"
+ "http://www.jboss.org/j2ee/dtd/jboss-web_5_0.dtd">
+
+<!--
+ ~ Embedded Jopr Project
+ ~ Copyright (C) 2006-2009 Red Hat, Inc.
+ ~ All rights reserved.
+ ~
+ ~ This program 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 program 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 program; if not, write to the Free Software
+ ~ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ -->
+<jboss-web>
+
+ <class-loading>
+ <loader-repository>
+ org.jboss.on:loader=embedded
+ <loader-repository-config>java2ParentDelegation=false</loader-repository-config>
+ </loader-repository>
+ </class-loading>
+
+ <security-domain>java:/jaas/jmx-console</security-domain>
+
+ <context-root>admin-console</context-root>
+
+</jboss-web>
Modified: branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/pom.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/pom.xml 2010-01-18 15:05:32 UTC (rev 865)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/pom.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -9,6 +9,8 @@
<mavenConflictResolvers>newest,nearest</mavenConflictResolvers>
<cargo.plugin.version>1.0.1-SNAPSHOT</cargo.plugin.version>
+ <jsfunit.version>1.1.0.GA-HTMLUnit26</jsfunit.version> <!-- 1.2.0.GA-SNAPSHOT -->
+
<jvm.args.debug></jvm.args.debug> <!-- Used by the -Pdebug profile. -->
<jvm.args.profiler></jvm.args.profiler> <!-- Used by the -Pprofile profile. -->
<jvm.args.exposejmx></jvm.args.exposejmx> <!-- Expose JMX - used to enable the Hibernate statistics. -->
@@ -102,7 +104,7 @@
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<scope>compile</scope>
- <version>2.5</version>
+ <version>2.6</version>
</dependency>
<dependency>
<groupId>rhino</groupId>
@@ -122,7 +124,7 @@
<dependency>
<groupId>org.jboss.jsfunit</groupId>
<artifactId>jboss-jsfunit-core</artifactId>
- <version>1.1.0.GA</version>
+ <version>${jsfunit.version}</version>
<scope>compile</scope>
<exclusions>
<exclusion> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> </exclusion>
@@ -132,7 +134,7 @@
<dependency>
<groupId>org.jboss.jsfunit</groupId>
<artifactId>jboss-jsfunit-richfaces</artifactId>
- <version>1.1.0.GA</version>
+ <version>${jsfunit.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
@@ -163,7 +165,7 @@
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<scope>provided</scope>
- <version>2.8.1</version> <!-- 2.9.1 -->
+ <version>2.9.1</version> <!-- 2.9.1 -->
</dependency>
<dependency>
<groupId>jdom</groupId>
Property changes on: branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/main/resources
___________________________________________________________________
Name: svn:ignore
+ versions.properties
Modified: branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/main/webapp/WEB-INF/web.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/main/webapp/WEB-INF/web.xml 2010-01-18 15:05:32 UTC (rev 865)
+++ branches/EmbJopr-1.4.0-SN-EAP5/jsfunit/src/main/webapp/WEB-INF/web.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -1,172 +1,179 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- ~ Embedded Jopr Project
- ~ Copyright (C) 2006-2009 Red Hat, Inc.
- ~ All rights reserved.
- ~
- ~ This program 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 program 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 program; if not, write to the Free Software
- ~ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- -->
-<web-app version="2.5"
- xmlns="http://java.sun.com/xml/ns/javaee"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
-
- <!-- RichFaces -->
-
- <!-- From Seam docs: If RichFaces is used in your project, Seam will install
- the RichFaces Ajax filter for you, making sure to install it before all
- other built-in filters. You don't need to install the RichFaces Ajax
- filter in web.xml yourself. -->
-
- <context-param>
- <param-name>org.richfaces.SKIN</param-name>
- <param-value>jboss-console</param-value>
- </context-param>
-
- <!-- It doesn't allow A4J to reformat JavaScript files (makes it impossible to debug) -->
- <context-param>
- <param-name>org.ajax4jsf.COMPRESS_SCRIPT</param-name>
- <param-value>false</param-value>
- </context-param>
-
- <!-- JSFUnit -->
- <filter>
- <filter-name>JSFUnitFilter</filter-name>
- <filter-class>org.jboss.jsfunit.framework.JSFUnitFilter</filter-class>
- </filter>
-
- <filter-mapping>
- <filter-name>JSFUnitFilter</filter-name>
- <servlet-name>ServletTestRunner</servlet-name>
- </filter-mapping>
-
- <filter-mapping>
- <filter-name>JSFUnitFilter</filter-name>
- <servlet-name>ServletRedirector</servlet-name>
- </filter-mapping>
-
- <servlet>
- <servlet-name>ServletRedirector</servlet-name>
- <servlet-class>org.jboss.jsfunit.framework.JSFUnitServletRedirector</servlet-class>
- </servlet>
-
- <servlet>
- <servlet-name>ServletTestRunner</servlet-name>
- <servlet-class>org.apache.cactus.server.runner.ServletTestRunner</servlet-class>
- </servlet>
-
- <servlet-mapping>
- <servlet-name>ServletRedirector</servlet-name>
- <url-pattern>/ServletRedirector.jsfunit</url-pattern>
- </servlet-mapping>
-
- <servlet-mapping>
- <servlet-name>ServletTestRunner</servlet-name>
- <url-pattern>/ServletTestRunner.jsfunit</url-pattern>
- </servlet-mapping>
-
-
- <!-- Seam -->
-
- <listener>
- <listener-class>org.jboss.seam.servlet.SeamListener</listener-class>
- </listener>
-
-
-
-
- <!-- From Seam docs: The Seam master filter must be the first filter specified
- in web.xml. This ensures it is run first. -->
- <filter>
- <filter-name>Seam Filter</filter-name>
- <filter-class>org.jboss.seam.servlet.SeamFilter</filter-class>
- </filter>
- <filter-mapping>
- <filter-name>Seam Filter</filter-name>
- <url-pattern>/*</url-pattern>
- </filter-mapping>
-
- <!-- JSF -->
-
- <servlet>
- <servlet-name>Faces Servlet</servlet-name>
- <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
- <load-on-startup>1</load-on-startup>
- </servlet>
- <servlet-mapping>
- <servlet-name>Faces Servlet</servlet-name>
- <url-pattern>*.seam</url-pattern>
- </servlet-mapping>
-
- <context-param>
- <param-name>javax.faces.CONFIG_FILES</param-name>
- <param-value>/WEB-INF/navigation.xml</param-value>
- </context-param>
-
- <context-param>
- <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
- <param-value>client</param-value>
- </context-param>
-
- <context-param>
- <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
- <param-value>.xhtml</param-value>
- </context-param>
-
- <!-- JSF RI -->
-
- <listener>
- <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
- </listener>
-
- <!-- Facelets -->
-
- <!-- load our Facelets taglibs (value must be semicolon-delimited) -->
- <context-param>
- <param-name>facelets.LIBRARIES</param-name>
- <param-value>/WEB-INF/on.component.taglib.xml</param-value>
- </context-param>
-
- <!-- enable special debug output for development -->
- <context-param>
- <param-name>facelets.DEVELOPMENT</param-name>
- <param-value>true</param-value>
- </context-param>
-
- <!--<security-constraint>-->
- <!--<web-resource-collection>-->
- <!--<web-resource-name>HtmlAdaptor</web-resource-name>-->
- <!--<description> An example security config that only allows users with-->
- <!--the role JBossAdmin to access the embedded console web-->
- <!--application </description>-->
- <!--<url-pattern>/*</url-pattern>-->
- <!--<http-method>GET</http-method>-->
- <!--<http-method>POST</http-method>-->
- <!--</web-resource-collection>-->
- <!--<auth-constraint>-->
- <!--<role-name>JBossAdmin</role-name>-->
- <!--</auth-constraint>-->
- <!--</security-constraint>-->
- <login-config>
- <auth-method>BASIC</auth-method>
- <realm-name>JBoss embedded Console</realm-name>
- </login-config>
- <security-role>
- <role-name>JBossAdmin</role-name>
- </security-role>
-
-
-</web-app>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ Embedded Jopr Project
+ ~ Copyright (C) 2006-2009 Red Hat, Inc.
+ ~ All rights reserved.
+ ~
+ ~ This program 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 program 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 program; if not, write to the Free Software
+ ~ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ -->
+<web-app version="2.5"
+ xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
+
+ <!-- RichFaces -->
+
+ <!-- From Seam docs: If RichFaces is used in your project, Seam will install
+ the RichFaces Ajax filter for you, making sure to install it before all
+ other built-in filters. You don't need to install the RichFaces Ajax
+ filter in web.xml yourself. -->
+
+ <context-param>
+ <param-name>org.richfaces.SKIN</param-name>
+ <param-value>jboss-console</param-value>
+ </context-param>
+
+ <!-- This tells A4J not to shrink JavaScript files (which makes them impossible to debug). -->
+ <context-param>
+ <param-name>org.ajax4jsf.COMPRESS_SCRIPT</param-name>
+ <param-value>false</param-value>
+ </context-param>
+
+ <!-- here is a known bug with the new HtmlUnit 2.6 and RichFaces. It causes the A4JSupport tag to not rerender properly. -->
+ <!-- RF-8036 - RichFaces doesn't work with latest Neko release -->
+ <context-param>
+ <param-name>org.ajax4jsf.xmlparser.ORDER</param-name>
+ <param-value>TIDY</param-value>
+ </context-param>
+
+ <!-- JSFUnit -->
+ <filter>
+ <filter-name>JSFUnitFilter</filter-name>
+ <filter-class>org.jboss.jsfunit.framework.JSFUnitFilter</filter-class>
+ </filter>
+
+ <filter-mapping>
+ <filter-name>JSFUnitFilter</filter-name>
+ <servlet-name>ServletTestRunner</servlet-name>
+ </filter-mapping>
+
+ <filter-mapping>
+ <filter-name>JSFUnitFilter</filter-name>
+ <servlet-name>ServletRedirector</servlet-name>
+ </filter-mapping>
+
+ <servlet>
+ <servlet-name>ServletRedirector</servlet-name>
+ <servlet-class>org.jboss.jsfunit.framework.JSFUnitServletRedirector</servlet-class>
+ </servlet>
+
+ <servlet>
+ <servlet-name>ServletTestRunner</servlet-name>
+ <servlet-class>org.apache.cactus.server.runner.ServletTestRunner</servlet-class>
+ </servlet>
+
+ <servlet-mapping>
+ <servlet-name>ServletRedirector</servlet-name>
+ <url-pattern>/ServletRedirector.jsfunit</url-pattern>
+ </servlet-mapping>
+
+ <servlet-mapping>
+ <servlet-name>ServletTestRunner</servlet-name>
+ <url-pattern>/ServletTestRunner.jsfunit</url-pattern>
+ </servlet-mapping>
+
+
+ <!-- Seam -->
+
+ <listener>
+ <listener-class>org.jboss.seam.servlet.SeamListener</listener-class>
+ </listener>
+
+
+
+
+ <!-- From Seam docs: The Seam master filter must be the first filter specified
+ in web.xml. This ensures it is run first. -->
+ <filter>
+ <filter-name>Seam Filter</filter-name>
+ <filter-class>org.jboss.seam.servlet.SeamFilter</filter-class>
+ </filter>
+ <filter-mapping>
+ <filter-name>Seam Filter</filter-name>
+ <url-pattern>/*</url-pattern>
+ </filter-mapping>
+
+ <!-- JSF -->
+
+ <servlet>
+ <servlet-name>Faces Servlet</servlet-name>
+ <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
+ <load-on-startup>1</load-on-startup>
+ </servlet>
+ <servlet-mapping>
+ <servlet-name>Faces Servlet</servlet-name>
+ <url-pattern>*.seam</url-pattern>
+ </servlet-mapping>
+
+ <context-param>
+ <param-name>javax.faces.CONFIG_FILES</param-name>
+ <param-value>/WEB-INF/navigation.xml</param-value>
+ </context-param>
+
+ <context-param>
+ <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
+ <param-value>server</param-value>
+ </context-param>
+
+ <context-param>
+ <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
+ <param-value>.xhtml</param-value>
+ </context-param>
+
+ <!-- JSF RI -->
+
+ <listener>
+ <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
+ </listener>
+
+ <!-- Facelets -->
+
+ <!-- load our Facelets taglibs (value must be semicolon-delimited) -->
+ <context-param>
+ <param-name>facelets.LIBRARIES</param-name>
+ <param-value>/WEB-INF/on.component.taglib.xml</param-value>
+ </context-param>
+
+ <!-- enable special debug output for development -->
+ <context-param>
+ <param-name>facelets.DEVELOPMENT</param-name>
+ <param-value>true</param-value>
+ </context-param>
+
+ <!--<security-constraint>-->
+ <!--<web-resource-collection>-->
+ <!--<web-resource-name>HtmlAdaptor</web-resource-name>-->
+ <!--<description> An example security config that only allows users with-->
+ <!--the role JBossAdmin to access the embedded console web-->
+ <!--application </description>-->
+ <!--<url-pattern>/*</url-pattern>-->
+ <!--<http-method>GET</http-method>-->
+ <!--<http-method>POST</http-method>-->
+ <!--</web-resource-collection>-->
+ <!--<auth-constraint>-->
+ <!--<role-name>JBossAdmin</role-name>-->
+ <!--</auth-constraint>-->
+ <!--</security-constraint>-->
+ <login-config>
+ <auth-method>BASIC</auth-method>
+ <realm-name>JBoss embedded Console</realm-name>
+ </login-config>
+ <security-role>
+ <role-name>JBossAdmin</role-name>
+ </security-role>
+
+
+</web-app>
Modified: branches/EmbJopr-1.4.0-SN-EAP5/pom.xml
===================================================================
--- branches/EmbJopr-1.4.0-SN-EAP5/pom.xml 2010-01-18 15:05:32 UTC (rev 865)
+++ branches/EmbJopr-1.4.0-SN-EAP5/pom.xml 2010-01-18 16:22:50 UTC (rev 866)
@@ -32,6 +32,7 @@
<artifactId>jopr-embedded-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<packaging>pom</packaging>
+
<name>Embedded Jopr</name>
<description>a web application that provides administration and monitoring of the app server instance to which it is deployed</description>
<url>http://jboss.org/embjopr/</url>
@@ -54,6 +55,7 @@
<properties>
<jbas4.finalName>jbas4-admin-console</jbas4.finalName>
<jbas5.finalName>jbas5-admin-console</jbas5.finalName>
+ <jbas6.finalName>jbas6-admin-console</jbas6.finalName>
<!-- dependency groupIds -->
<rhq.groupId>org.rhq</rhq.groupId>
@@ -64,9 +66,9 @@
<!-- dependency versions -->
<jaxb-api.version>2.1</jaxb-api.version>
<jaxb-impl.version>2.1.6</jaxb-impl.version>
- <jopr.version>2.4.0-SNAPSHOT</jopr.version>
- <richfaces.version>3.3.3.BETA1</richfaces.version>
- <rhq.version>1.3.0.GA</rhq.version>
+ <jopr.version>1.4.0-SNAPSHOT</jopr.version>
+ <richfaces.version>3.3.3.BETA1</richfaces.version> <!-- 3.3.2.SR1 -->
+ <rhq.version>1.4.0-SNAPSHOT</rhq.version>
<seam.version>2.1.0.SP1</seam.version>
<seam.embedded.version>beta3.SP3</seam.embedded.version>
<!-- This is a special patched version of not-yet-released Facelets 1.1.15,
@@ -125,6 +127,7 @@
<module>core</module>
<module>jbas4</module>
<module>jbas5</module>
+ <module>jbas6</module>
<!-- Removed until we solve the "Cannot find parent: org.jboss.jopr:jopr-embedded-parent" problem. -->
<!--<module>jsfunit</module> -->
</modules>
@@ -149,6 +152,14 @@
</snapshots>
</repository>
+ <!-- For RF 3.3.3 snapshot -->
+ <repository>
+ <id>exadel-repo</id>
+ <name>Exadel Repository</name>
+ <url>http://repository.exadel.com/</url>
+ <snapshots> <enabled>true</enabled> </snapshots>
+ </repository>
+
</repositories>
<pluginRepositories>
14 years, 12 months
EMBJOPR SVN: r865 - branches.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2010-01-18 10:05:32 -0500 (Mon, 18 Jan 2010)
New Revision: 865
Added:
branches/EmbJopr-1.4.0-SN-EAP5/
Log:
Branch to test 1.4.0 with EAP 5.0 GA
Copied: branches/EmbJopr-1.4.0-SN-EAP5 (from rev 864, trunk)
14 years, 12 months
EMBJOPR SVN: r864 - trunk/core/src/main/java/org/jboss/on/embedded/ui/content.
by embjopr-commits@lists.jboss.org
Author: charles.crouch(a)jboss.com
Date: 2010-01-15 16:01:01 -0500 (Fri, 15 Jan 2010)
New Revision: 864
Modified:
trunk/core/src/main/java/org/jboss/on/embedded/ui/content/CreateContentBackedResourceAction.java
trunk/core/src/main/java/org/jboss/on/embedded/ui/content/UpdateBackingContentAction.java
Log:
first cut at EMBJOPR-273
Modified: trunk/core/src/main/java/org/jboss/on/embedded/ui/content/CreateContentBackedResourceAction.java
===================================================================
--- trunk/core/src/main/java/org/jboss/on/embedded/ui/content/CreateContentBackedResourceAction.java 2010-01-07 02:51:42 UTC (rev 863)
+++ trunk/core/src/main/java/org/jboss/on/embedded/ui/content/CreateContentBackedResourceAction.java 2010-01-15 21:01:01 UTC (rev 864)
@@ -28,7 +28,6 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.rhq.core.clientapi.agent.inventory.CreateResourceResponse;
-import org.rhq.core.clientapi.server.plugin.content.ContentSourcePackageDetailsKey;
import org.rhq.core.domain.configuration.Configuration;
import org.rhq.core.domain.configuration.definition.ConfigurationDefinition;
import org.rhq.core.domain.content.PackageDetailsKey;
@@ -119,8 +118,8 @@
return FAILURE_OUTCOME;
}
- PackageDetailsKey key = new ContentSourcePackageDetailsKey(tempFile.getPath(), INITIAL_PACKAGE_VERSION, this.packageType.getName(),
- PACKAGE_ARCHITECTURE, this.resourceType.getName(), this.resourceType.getPlugin());
+ PackageDetailsKey key = new PackageDetailsKey(tempFile.getPath(), INITIAL_PACKAGE_VERSION, this.packageType.getName(),
+ PACKAGE_ARCHITECTURE);
ResourcePackageDetails detail = new ResourcePackageDetails(key);
detail.setDeploymentTimeConfiguration(this.configuration);
Modified: trunk/core/src/main/java/org/jboss/on/embedded/ui/content/UpdateBackingContentAction.java
===================================================================
--- trunk/core/src/main/java/org/jboss/on/embedded/ui/content/UpdateBackingContentAction.java 2010-01-07 02:51:42 UTC (rev 863)
+++ trunk/core/src/main/java/org/jboss/on/embedded/ui/content/UpdateBackingContentAction.java 2010-01-15 21:01:01 UTC (rev 864)
@@ -30,7 +30,6 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.rhq.core.clientapi.agent.PluginContainerException;
-import org.rhq.core.clientapi.server.plugin.content.ContentSourcePackageDetailsKey;
import org.rhq.core.domain.content.PackageDetailsKey;
import org.rhq.core.domain.content.PackageType;
import org.rhq.core.domain.content.transfer.ContentDiscoveryReport;
@@ -143,8 +142,8 @@
// TODO: Allow user to specify version?
String version = String.valueOf(System.currentTimeMillis());
- PackageDetailsKey key = new ContentSourcePackageDetailsKey(tempFile.getPath(), version, this.packageType.getName(),
- PACKAGE_ARCHITECTURE, this.resourceType.getName(), this.resourceType.getPlugin());
+ PackageDetailsKey key = new PackageDetailsKey(tempFile.getPath(), version, this.packageType.getName(),
+ PACKAGE_ARCHITECTURE);
ResourcePackageDetails detail = new ResourcePackageDetails(key);
//detail.setDeploymentTimeConfiguration(this.packageDetails.getDeploymentTimeConfiguration());
15 years
EMBJOPR SVN: r863 - trunk/core.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2010-01-06 21:51:42 -0500 (Wed, 06 Jan 2010)
New Revision: 863
Modified:
trunk/core/pom.xml
Log:
EJ Core POM: Prepared exclusion of jboss-seam-jul (in a comment) - added "EMBJOPR-269"
Modified: trunk/core/pom.xml
===================================================================
--- trunk/core/pom.xml 2010-01-07 02:47:42 UTC (rev 862)
+++ trunk/core/pom.xml 2010-01-07 02:51:42 UTC (rev 863)
@@ -105,7 +105,7 @@
<groupId>${seam.groupId}</groupId>
<artifactId>jboss-seam-ui</artifactId>
<version>${seam.version}</version>
- <!--
+ <!-- EMBJOPR-269
<exclusions>
<exclusion>
<groupId>${seam.groupId}</groupId>
15 years