EMBJOPR SVN: r424 - in trunk/jsfunit: src and 2 other directories.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2009-05-15 11:02:47 -0400 (Fri, 15 May 2009)
New Revision: 424
Added:
trunk/jsfunit/src/build/
trunk/jsfunit/src/build/resources/
trunk/jsfunit/src/build/resources/TEST-TestSuite.xsl
Modified:
trunk/jsfunit/pom.xml
Log:
JSFUnit - Trying to split the Hudson's tests reports.
Modified: trunk/jsfunit/pom.xml
===================================================================
--- trunk/jsfunit/pom.xml 2009-05-15 14:43:06 UTC (rev 423)
+++ trunk/jsfunit/pom.xml 2009-05-15 15:02:47 UTC (rev 424)
@@ -580,7 +580,7 @@
<srcDir>${basedir}/target/surefire-reports</srcDir>
<destDir>${basedir}/target/surefire-reports</destDir>
<fileNameRegex>TEST-TestSuite.xml</fileNameRegex>
- <xslFile>${basedir}/TEST-TestSuite.xsl</xslFile>
+ <xslFile>${basedir}/src/build/resources/TEST-TestSuite.xsl</xslFile>
</configuration>
</plugin>
Added: trunk/jsfunit/src/build/resources/TEST-TestSuite.xsl
===================================================================
--- trunk/jsfunit/src/build/resources/TEST-TestSuite.xsl (rev 0)
+++ trunk/jsfunit/src/build/resources/TEST-TestSuite.xsl 2009-05-15 15:02:47 UTC (rev 424)
@@ -0,0 +1,18 @@
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+ <xsl:param name="packageName"></xsl:param>
+
+ <xsl:output method="xml" encoding="utf-8" indent="no"/>
+
+
+ <xsl:template match="testcase[not( starts-with(@classname,$packageName) and not(contains(substring-after(@classname,$packageName), '.')) )]">
+ </xsl:template>
+
+
+ <!-- Vsechny uzly zkopiruj tak, jak jsou. [name(.)!='soubor'] -->
+ <xsl:template match="*|@*|text()">
+ <xsl:copy>
+ <xsl:apply-templates select="node()|@*"/>
+ </xsl:copy>
+ </xsl:template>
+
+</xsl:stylesheet>
\ No newline at end of file
15 years, 7 months
EMBJOPR SVN: r423 - trunk/jsfunit.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2009-05-15 10:43:06 -0400 (Fri, 15 May 2009)
New Revision: 423
Modified:
trunk/jsfunit/pom.xml
Log:
JSFUnit - Trying to split the Hudson's tests reports.
Modified: trunk/jsfunit/pom.xml
===================================================================
--- trunk/jsfunit/pom.xml 2009-05-15 14:10:55 UTC (rev 422)
+++ trunk/jsfunit/pom.xml 2009-05-15 14:43:06 UTC (rev 423)
@@ -466,11 +466,63 @@
</execution>
</executions>
</plugin>
-
+
+ <!-- XSLT plugin - each execution separates one package. -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>xslt-maven-plugin</artifactId>
+ <executions>
+ <execution><id>xslt-war</id><phase>post-integration-test</phase><goals><goal>transform</goal></goals>
+ <configuration>
+ <fileNameReplacement>TEST-org.jboss.jopr.jsfunit.as5.app.war.xml</fileNameReplacement>
+ <parameters><packageName>org.jboss.jopr.jsfunit.as5.app.war.</packageName></parameters>
+ </configuration>
+ </execution>
+ <execution><id>xslt-war</id><phase>post-integration-test</phase><goals><goal>transform</goal></goals>
+ <configuration>
+ <fileNameReplacement>TEST-org.jboss.jopr.jsfunit.as5.app.war.xml</fileNameReplacement>
+ <parameters><packageName>org.jboss.jopr.jsfunit.as5.app.war.</packageName></parameters>
+ </configuration>
+ </execution>
+ <execution><id>xslt-ear</id><phase>post-integration-test</phase><goals><goal>transform</goal></goals>
+ <configuration>
+ <fileNameReplacement>TEST-org.jboss.jopr.jsfunit.as5.app.ear.xml</fileNameReplacement>
+ <parameters><packageName>org.jboss.jopr.jsfunit.as5.app.ear.</packageName></parameters>
+ </configuration>
+ </execution>
+ <execution><id>xslt-rar</id><phase>post-integration-test</phase><goals><goal>transform</goal></goals>
+ <configuration>
+ <fileNameReplacement>TEST-org.jboss.jopr.jsfunit.as5.app.rar.xml</fileNameReplacement>
+ <parameters><packageName>org.jboss.jopr.jsfunit.as5.app.rar.</packageName></parameters>
+ </configuration>
+ </execution>
+ <execution><id>xslt-sar</id><phase>post-integration-test</phase><goals><goal>transform</goal></goals>
+ <configuration>
+ <fileNameReplacement>TEST-org.jboss.jopr.jsfunit.as5.app.ejb.xml</fileNameReplacement>
+ <parameters><packageName>org.jboss.jopr.jsfunit.as5.app.ejb.</packageName></parameters>
+ </configuration>
+ </execution>
+ <execution><id>xslt-sar</id><phase>post-integration-test</phase><goals><goal>transform</goal></goals>
+ <configuration>
+ <fileNameReplacement>TEST-org.jboss.jopr.jsfunit.as5.app.datasources.xml</fileNameReplacement>
+ <parameters><packageName>org.jboss.jopr.jsfunit.as5.app.datasources.</packageName></parameters>
+ </configuration>
+ </execution>
+ <execution><id>xslt-sar</id><phase>post-integration-test</phase><goals><goal>transform</goal></goals>
+ <configuration>
+ <fileNameReplacement>TEST-org.jboss.jopr.jsfunit.as5.app.jmsDestinations.xml</fileNameReplacement>
+ <parameters><packageName>org.jboss.jopr.jsfunit.as5.app.jmsDestinations.</packageName></parameters>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
</plugins>
</build>
</profile>
+ <!-- Debug profile - waits for debugger connection at port 4000.
+ The right time to connect is when Cargo plugin starts the server. -->
<profile>
<id>debug</id>
<properties>
@@ -519,7 +571,21 @@
</configuration>
</plugin>
+ <!-- XSLT plugin - properties shared for all executions. -->
<plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>xslt-maven-plugin</artifactId>
+ <version>1.0</version>
+ <configuration>
+ <srcDir>${basedir}/target/surefire-reports</srcDir>
+ <destDir>${basedir}/target/surefire-reports</destDir>
+ <fileNameRegex>TEST-TestSuite.xml</fileNameRegex>
+ <xslFile>${basedir}/TEST-TestSuite.xsl</xslFile>
+ </configuration>
+ </plugin>
+
+ <!-- AntRun - delete bundled admin console before we deploy our own one. -->
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
15 years, 7 months
EMBJOPR SVN: r422 - trunk/jsfunit.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2009-05-15 10:10:55 -0400 (Fri, 15 May 2009)
New Revision: 422
Modified:
trunk/jsfunit/pom.xml
Log:
JBQA-2344 - added htmlunit.browser property to profiles
Modified: trunk/jsfunit/pom.xml
===================================================================
--- trunk/jsfunit/pom.xml 2009-05-15 14:04:54 UTC (rev 421)
+++ trunk/jsfunit/pom.xml 2009-05-15 14:10:55 UTC (rev 422)
@@ -240,6 +240,10 @@
<name>cactus.servletRedirectorName</name>
<value>ServletRedirector.jsfunit</value>
</property>
+ <property>
+ <name>htmlunit.browser</name>
+ <value>${htmlunit.browser}</value>
+ </property>
</systemProperties>
</configuration>
</execution>
@@ -453,6 +457,10 @@
<name>cactus.servletRedirectorName</name>
<value>ServletRedirector.jsfunit</value>
</property>
+ <property>
+ <name>htmlunit.browser</name>
+ <value>${htmlunit.browser}</value>
+ </property>
</systemProperties>
</configuration>
</execution>
15 years, 7 months
EMBJOPR SVN: r421 - trunk/jbas5/etc.
by embjopr-commits@lists.jboss.org
Author: ips
Date: 2009-05-15 10:04:54 -0400 (Fri, 15 May 2009)
New Revision: 421
Modified:
trunk/jbas5/etc/generated-rhq-plugin.xml
Log:
latest generated descriptor
Modified: trunk/jbas5/etc/generated-rhq-plugin.xml
===================================================================
--- trunk/jbas5/etc/generated-rhq-plugin.xml 2009-05-15 14:02:54 UTC (rev 420)
+++ trunk/jbas5/etc/generated-rhq-plugin.xml 2009-05-15 14:04:54 UTC (rev 421)
@@ -603,71 +603,180 @@
</service>
<service name="Platform MBean">
<resource-configuration>
- <c:simple-property type="long" required="false" readOnly="true" name="collectionCount"/>
- <c:simple-property type="long" required="false" readOnly="true" name="collectionTime"/>
- <c:list-property required="false" readOnly="true" name="memoryPoolNames">
- <c:simple-property required="false" name="element"/>
- </c:list-property>
- <c:simple-property required="false" readOnly="true" name="name"/>
- <c:simple-property type="boolean" required="false" readOnly="true" name="valid"/>
+ <c:simple-property required="false" readOnly="true" name="arch" description="the operating system architecture."/>
+ <c:simple-property type="integer" required="false" readOnly="true" name="availableProcessors" description="the number of processors available to the virtual machine; never smaller than one."/>
+ <c:simple-property required="false" readOnly="true" name="name" description="the operating system name."/>
+ <c:simple-property type="double" required="false" readOnly="true" name="systemLoadAverage"/>
+ <c:simple-property required="false" readOnly="true" name="version" description="the operating system version."/>
</resource-configuration>
</service>
<service name="Servlet MBean">
+ <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">
+ <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="maxThreads" measurementType="dynamic" displayType="detail" displayName="Max Threads" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
+ <metric property="threadPriority" measurementType="dynamic" displayType="detail" displayName="Thread Priority" defaultOn="true" defaultInterval="60000" dataType="measurement" category="performance"/>
<resource-configuration>
- <c:simple-property type="integer" required="false" readOnly="true" name="classLoadTime"/>
- <c:simple-property required="false" readOnly="true" name="engineName"/>
- <c:simple-property type="integer" required="false" readOnly="true" name="errorCount"/>
- <c:simple-property type="boolean" required="false" name="eventProvider"/>
- <c:simple-property type="long" required="false" readOnly="true" name="loadTime"/>
- <c:simple-property type="long" required="false" readOnly="true" name="maxTime"/>
- <c:simple-property type="long" required="false" readOnly="true" name="minTime"/>
- <c:simple-property required="false" readOnly="true" name="modelerType"/>
- <c:simple-property required="false" name="objectName"/>
- <c:simple-property type="long" required="false" readOnly="true" name="processingTime"/>
- <c:simple-property type="integer" required="false" readOnly="true" name="requestCount"/>
- <c:simple-property type="boolean" required="false" name="stateManageable"/>
- <c:simple-property type="boolean" required="false" name="statisticsProvider"/>
+ <c:simple-property required="false" readOnly="true" name="mbeanNameAsString"/>
+ <c:simple-property required="false" name="state" description="The bean controller state"/>
</resource-configuration>
</service>
- <service name="Web MBean">
- <operation name="resetCounters" displayName="Reset Counters" description=""/>
+ <service name="WebApplication MBean">
+ <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">
+ <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">
+ <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">
<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">
+ <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="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:simple-property required="false" readOnly="true" name="mbeanNameAsString"/>
- <c:simple-property required="false" name="state" description="The bean controller state"/>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
</resource-configuration>
</service>
- <service name="WebApplicationManager MBean">
+ <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:simple-property type="integer" required="false" readOnly="true" name="activeSessions"/>
- <c:simple-property required="false" name="algorithm"/>
- <c:simple-property required="false" readOnly="true" name="className"/>
- <c:simple-property type="boolean" required="false" name="distributable"/>
- <c:simple-property type="integer" required="false" name="duplicates"/>
- <c:simple-property required="false" name="entropy"/>
- <c:simple-property type="integer" required="false" name="expiredSessions"/>
- <c:simple-property type="integer" required="false" name="maxActive"/>
- <c:simple-property type="integer" required="false" name="maxActiveSessions"/>
- <c:simple-property type="integer" required="false" name="maxInactiveInterval"/>
- <c:simple-property required="false" readOnly="true" name="modelerType"/>
- <c:simple-property required="false" readOnly="true" name="name"/>
- <c:simple-property required="false" name="pathname"/>
- <c:simple-property type="integer" required="false" name="processExpiresFrequency"/>
- <c:simple-property type="long" required="false" name="processingTime"/>
- <c:simple-property required="false" name="randomFile"/>
- <c:simple-property type="integer" required="false" name="rejectedSessions"/>
- <c:simple-property type="integer" required="false" name="sessionAverageAliveTime"/>
- <c:simple-property type="integer" required="false" name="sessionCounter"/>
- <c:simple-property type="integer" required="false" name="sessionIdLength"/>
- <c:simple-property type="integer" required="false" name="sessionMaxAliveTime"/>
+ <c:list-property required="false" name="properties">
+ <c:map-property required="false" name="element"/>
+ </c:list-property>
</resource-configuration>
</service>
- <service name="ProfileFactory MCBean">
+ <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">
@@ -675,7 +784,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ManagedDeploymentCreator MCBean">
+ <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">
@@ -683,7 +792,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="DefaultAspectManager MCBean">
+ <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">
@@ -691,7 +800,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="StructureModificationChecker MCBean">
+ <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">
@@ -699,7 +808,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="FileStructure MCBean">
+ <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">
@@ -707,7 +816,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="InMemoryClassesDeployer MCBean">
+ <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">
@@ -715,7 +824,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="MetaDataStructureModificationChecker MCBean">
+ <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">
@@ -723,7 +832,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="AOPClassLoaderDeployer MCBean">
+ <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">
@@ -731,7 +840,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="AOPXMLMetaDataParserDeployer MCBean">
+ <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">
@@ -739,7 +848,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ClassLoaderDescribeDeployer MCBean">
+ <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">
@@ -747,7 +856,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ServiceMetaDataICF MCBean">
+ <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">
@@ -755,7 +864,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="JARStructureCandidates MCBean">
+ <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">
@@ -763,7 +872,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="Deployers MCBean">
+ <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">
@@ -771,7 +880,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="SARDeployer MCBean">
+ <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">
@@ -779,7 +888,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="JMXCreateDestroyAdvice$AspectBinding MCBean">
+ <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">
@@ -787,7 +896,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="KernelDeploymentDeployer MCBean">
+ <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">
@@ -795,7 +904,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="jmx-classloader:0.0.0 MCBean">
+ <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">
@@ -803,7 +912,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="DefaultDeploymentRepositoryFactory MCBean">
+ <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">
@@ -811,7 +920,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="AttachmentStore MCBean">
+ <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">
@@ -819,7 +928,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="SynchAdapter MCBean">
+ <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">
@@ -827,7 +936,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="AttachmentStore$metaDataFilter#1 MCBean">
+ <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">
@@ -835,7 +944,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="AspectManagerJMXRegistrar MCBean">
+ <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">
@@ -843,7 +952,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="JMXRegistrationAdvice$AspectBinding MCBean">
+ <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">
@@ -851,7 +960,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="aop-classloader:0.0.0$MODULE MCBean">
+ <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">
@@ -859,7 +968,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ClassLoaderClassPathDeployer MCBean">
+ <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">
@@ -867,7 +976,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="profile-classloader:0.0.0 MCBean">
+ <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">
@@ -875,7 +984,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ProfileRepositoryFactory MCBean">
+ <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">
@@ -883,7 +992,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="profile-classloader:0.0.0$MODULE MCBean">
+ <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">
@@ -891,7 +1000,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="DefaultProfileKey MCBean">
+ <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">
@@ -899,7 +1008,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="JMXRegistrationAdvice MCBean">
+ <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">
@@ -907,7 +1016,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="MainDeployer MCBean">
+ <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">
@@ -915,7 +1024,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="BeansDeploymentAopMetaDataDeployer MCBean">
+ <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">
@@ -923,7 +1032,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ProfileServicePersistenceDeployer MCBean">
+ <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">
@@ -931,7 +1040,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ClassLoadingDefaultDeployer MCBean">
+ <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">
@@ -939,7 +1048,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="MetaDataStructureModificationChecker$filter#1 MCBean">
+ <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">
@@ -947,7 +1056,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="AOPAnnotationMetaDataParserDeployer MCBean">
+ <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">
@@ -955,7 +1064,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ServiceDeploymentDeployer MCBean">
+ <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">
@@ -963,7 +1072,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="DeclaredStructure MCBean">
+ <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">
@@ -971,7 +1080,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="bootstrap-classloader:0.0.0 MCBean">
+ <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">
@@ -979,7 +1088,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="JMXStartStopAdvice$AspectBinding MCBean">
+ <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">
@@ -987,7 +1096,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ModificationTypeStructureProcessor MCBean">
+ <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">
@@ -995,7 +1104,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="DeploymentFilter MCBean">
+ <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">
@@ -1003,7 +1112,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ClassLoaderDeployer MCBean">
+ <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">
@@ -1011,7 +1120,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="BeanDeployer MCBean">
+ <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">
@@ -1019,7 +1128,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="JMXCreateDestroyAdvice MCBean">
+ <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">
@@ -1027,7 +1136,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="BasicProfileFactory MCBean">
+ <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">
@@ -1035,7 +1144,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="aop-classloader:0.0.0 MCBean">
+ <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">
@@ -1043,7 +1152,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="StructureBuilder MCBean">
+ <service name="AttachmentStore$metaDataFilter#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">
@@ -1051,7 +1160,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="bootstrap-classloader:0.0.0$MODULE MCBean">
+ <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">
@@ -1059,7 +1168,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="AOPDeploymentAopMetaDataDeployer MCBean">
+ <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">
@@ -1067,7 +1176,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="AOPRegisterModuleCallback MCBean">
+ <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">
@@ -1075,7 +1184,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="BeanMetaDataDeployer MCBean">
+ <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">
@@ -1083,7 +1192,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ManagedObjectCreator MCBean">
+ <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">
@@ -1091,7 +1200,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="JMXKernel MCBean">
+ <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">
@@ -1099,7 +1208,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ClassLoaderSystem MCBean">
+ <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">
@@ -1107,7 +1216,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="BeanMetaDataICF MCBean">
+ <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">
@@ -1115,7 +1224,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="KernelDeploymentManagedObjectCreator MCBean">
+ <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">
@@ -1123,7 +1232,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="AttachmentsSerializer MCBean">
+ <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">
@@ -1131,7 +1240,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="jmx-classloader:0.0.0$MODULE MCBean">
+ <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">
@@ -1139,7 +1248,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="JARStructure MCBean">
+ <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">
@@ -1147,7 +1256,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="AOPClassLoaderScopingPolicy MCBean">
+ <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">
@@ -1155,7 +1264,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ServiceClassLoaderDeployer MCBean">
+ <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">
@@ -1163,7 +1272,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="BootstrapProfileFactory MCBean">
+ <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">
@@ -1171,7 +1280,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ClassLoading MCBean">
+ <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">
@@ -1179,7 +1288,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="AOPJBossIntegration MCBean">
+ <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">
@@ -1187,7 +1296,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="deployers-classloader:0.0.0 MCBean">
+ <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">
@@ -1195,7 +1304,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ProfileServiceDeployer MCBean">
+ <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">
@@ -1203,7 +1312,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="FilteredProfileFactory MCBean">
+ <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">
@@ -1211,7 +1320,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="deployers-classloader:0.0.0$MODULE MCBean">
+ <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">
@@ -1219,7 +1328,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="WebVisitorAttributes MCBean">
+ <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">
@@ -1227,7 +1336,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="AspectManager MCBean">
+ <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">
@@ -1235,7 +1344,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ProfileServiceBootstrap MCBean">
+ <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">
@@ -1243,7 +1352,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="JARFilter MCBean">
+ <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">
@@ -1251,7 +1360,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="StructuralDeployers MCBean">
+ <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">
@@ -1267,7 +1376,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ClassLoadingMetaDataParser MCBean">
+ <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">
@@ -1275,7 +1384,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="JMXStartStopAdvice MCBean">
+ <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">
@@ -1283,7 +1392,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="AOPClassPoolFactory MCBean">
+ <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">
@@ -1291,7 +1400,12 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="StructureModCache MCBean">
+ <service name="ManagementView MCBean">
+ <resource-configuration>
+ <c:simple-property required="false" name="state" description="The bean controller state"/>
+ </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">
@@ -1299,7 +1413,7 @@
</c:list-property>
</resource-configuration>
</service>
- <service name="ProfileService MCBean">
+ <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">
@@ -1307,6 +1421,85 @@
</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="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>
@@ -1431,169 +1624,102 @@
</resource-configuration>
</service>
<service name="Security MCBean">
- <resource-configuration>
- <c:simple-property type="boolean" required="false" name="abstract"/>
- <c:simple-property required="false" name="accessMode"/>
- <c:list-property required="false" name="aliasMetaData">
- <c:map-property required="false" name="element"/>
- </c:list-property>
- <c:list-property required="false" name="aliases">
- <c:map-property required="false" name="element"/>
- </c:list-property>
- <c:list-property required="false" name="annotations">
- <c:map-property required="false" name="element"/>
- </c:list-property>
- <c:simple-property type="boolean" required="false" name="autowireCandidate"/>
- <c:simple-property required="false" name="autowireType"/>
- <c:simple-property required="false" name="bean"/>
- <c:list-property required="false" readOnly="true" name="beans">
- <c:map-property required="false" name="element">
- <c:simple-property type="boolean" required="false" name="abstract"/>
- <c:simple-property required="false" name="accessMode"/>
- <c:list-property name="aliases">
- <c:map-property required="false" name="element"/>
- </c:list-property>
- <c:list-property name="annotations">
- <c:map-property required="false" name="element"/>
- </c:list-property>
- <c:simple-property type="boolean" required="false" name="autowireCandidate"/>
- <c:simple-property required="false" name="autowireType"/>
- <c:simple-property required="false" name="bean"/>
- <c:list-property name="demands">
- <c:map-property required="false" name="element"/>
- </c:list-property>
- <c:list-property name="depends">
- <c:map-property required="false" name="element"/>
- </c:list-property>
- <c:simple-property required="false" name="errorHandlingMode"/>
- <c:list-property name="installCallbacks">
- <c:map-property required="false" name="element">
- <c:simple-property required="false" name="property"/>
- <c:simple-property required="false" name="signature"/>
- </c:map-property>
- </c:list-property>
- <c:list-property name="installs">
- <c:map-property required="false" name="element">
- <c:simple-property required="false" name="bean"/>
- </c:map-property>
- </c:list-property>
- <c:simple-property required="false" name="mode"/>
+ <operation name="createSecurityDomainContext" displayName="Create Security Domain Context" description="Create the context for the specified security domain">
+ <parameters>
+ <c:simple-property required="false" name="securityDomain" description="The security domain name"/>
+ </parameters>
+ <results>
+ <c:notes>Create the context for the specified security domain</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="deregisterJaasSecurityDomainInstance" displayName="Deregister Jaas Security Domain Instance" description="Deregister the specified security domain">
+ <parameters>
+ <c:simple-property required="false" name="securityDomain" description="The name of the security domain being deregistered"/>
+ </parameters>
+ </operation>
+ <operation name="getAuditManager" displayName="Get Audit Manager" description="Get the audit manager for the specified security domain">
+ <parameters>
+ <c:simple-property required="false" name="securityDomain" description="The security domain name"/>
+ </parameters>
+ <results>
+ <c:notes>Get the audit manager for the specified security domain</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="getAuthenticationManager" displayName="Get Authentication Manager" description="Get the authentication manager for the specified security domain">
+ <parameters>
+ <c:simple-property required="false" name="securityDomain" description="The security domain name"/>
+ </parameters>
+ <results>
+ <c:notes>Get the authentication manager for the specified security domain</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="getAuthorizationManager" displayName="Get Authorization Manager" description="Get the authorization manager for the specified security domain">
+ <parameters>
+ <c:simple-property required="false" name="securityDomain" description="The security domain name"/>
+ </parameters>
+ <results>
+ <c:notes>Get the authorization manager for the specified security domain</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="getIdentityTrustManager" displayName="Get Identity Trust Manager" description="Get the identity trust manager for the specified security domain">
+ <parameters>
+ <c:simple-property required="false" name="securityDomain" description="The security domain name"/>
+ </parameters>
+ <results>
+ <c:notes>Get the identity trust manager for the specified security domain</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="getMappingManager" displayName="Get Mapping Manager" description="Get the mapping manager for the specified security domain">
+ <parameters>
+ <c:simple-property required="false" name="securityDomain" description="The security domain name"/>
+ </parameters>
+ <results>
+ <c:notes>Get the mapping manager for the specified security domain</c:notes>
+ <c:map-property required="false" name="result"/>
+ </results>
+ </operation>
+ <operation name="registerJaasSecurityDomainInstance" displayName="Register Jaas Security Domain Instance" description="Register the specified security domain">
+ <parameters>
+ <c:map-property required="false" name="domain" description="The security domain being registered">
+ <c:simple-property required="false" name="cipherAlgorithm"/>
+ <c:simple-property type="boolean" required="false" name="deepCopySubjectOption"/>
+ <c:simple-property type="integer" required="false" name="iterationCount"/>
+ <c:simple-property required="false" name="keyStoreAlias"/>
+ <c:simple-property required="false" name="keyStorePass"/>
+ <c:simple-property required="false" name="keyStoreType"/>
+ <c:simple-property required="false" name="keyStoreURL"/>
<c:simple-property required="false" name="name"/>
- <c:simple-property required="false" name="parent"/>
- <c:list-property name="properties">
+ <c:list-property name="notificationInfo">
<c:map-property required="false" name="element">
+ <c:simple-property required="false" name="description"/>
<c:simple-property required="false" name="name"/>
- <c:simple-property type="boolean" required="false" name="preInstantiate"/>
- <c:simple-property required="false" name="type"/>
- </c:map-property>
- </c:list-property>
- <c:list-property name="related">
- <c:map-property required="false" name="element">
- <c:simple-property required="false" name="className"/>
- <c:list-property name="enabled">
-<c:map-property required="false" name="element"/>
+ <c:list-property name="notifTypes">
+<c:simple-property required="false" name="element"/>
</c:list-property>
</c:map-property>
</c:list-property>
- <c:list-property name="supplies">
- <c:map-property required="false" name="element"/>
- </c:list-property>
- <c:list-property name="uninstallCallbacks">
- <c:map-property required="false" name="element">
- <c:simple-property required="false" name="property"/>
- <c:simple-property required="false" name="signature"/>
- </c:map-property>
- </c:list-property>
- <c:list-property name="uninstalls">
- <c:map-property required="false" name="element">
- <c:simple-property required="false" name="bean"/>
- </c:map-property>
- </c:list-property>
+ <c:simple-property required="false" name="salt"/>
+ <c:simple-property required="false" name="securityDomain"/>
+ <c:simple-property type="integer" required="false" name="state"/>
+ <c:simple-property required="false" name="stateString"/>
+ <c:simple-property required="false" name="trustStorePass"/>
+ <c:simple-property required="false" name="trustStoreType"/>
+ <c:simple-property required="false" name="trustStoreURL"/>
</c:map-property>
- </c:list-property>
- <c:map-property required="false" readOnly="true" name="children"/>
- <c:map-property required="false" name="classLoader"/>
- <c:simple-property required="false" readOnly="true" name="classShortName"/>
- <c:map-property required="false" name="constructor">
- <c:simple-property required="false" name="factoryClass"/>
- <c:simple-property required="false" name="factoryMethod"/>
- </c:map-property>
- <c:map-property required="false" name="create">
- <c:simple-property type="boolean" required="false" name="ignored"/>
- <c:simple-property required="false" name="methodName"/>
- </c:map-property>
- <c:list-property required="false" name="demands">
- <c:map-property required="false" name="element"/>
- </c:list-property>
- <c:list-property required="false" name="depends">
- <c:map-property required="false" name="element"/>
- </c:list-property>
- <c:simple-property required="false" name="description"/>
- <c:map-property required="false" name="destroy">
- <c:simple-property type="boolean" required="false" name="ignored"/>
- <c:simple-property required="false" name="methodName"/>
- </c:map-property>
- <c:simple-property required="false" name="errorHandlingMode"/>
- <c:list-property required="false" name="installCallbacks">
- <c:map-property required="false" name="element">
- <c:simple-property required="false" name="property"/>
- <c:simple-property required="false" name="signature"/>
- </c:map-property>
- </c:list-property>
- <c:list-property required="false" name="installs">
- <c:map-property required="false" name="element">
- <c:simple-property required="false" name="bean"/>
- </c:map-property>
- </c:list-property>
- <c:simple-property required="false" name="mode"/>
- <c:simple-property required="false" name="name"/>
- <c:simple-property required="false" name="parent"/>
- <c:list-property required="false" name="properties">
- <c:map-property required="false" name="element">
- <c:simple-property required="false" name="description"/>
- <c:simple-property required="false" name="name"/>
- <c:map-property required="false" name="value"/>
- <c:simple-property required="false" readOnly="true" name="classShortName"/>
- <c:map-property required="false" readOnly="true" name="children"/>
- <c:simple-property type="boolean" required="false" name="preInstantiate"/>
- <c:list-property required="false" name="annotations">
- <c:map-property required="false" name="element"/>
- </c:list-property>
- <c:simple-property required="false" readOnly="true" name="type"/>
- </c:map-property>
- </c:list-property>
- <c:list-property required="false" name="related">
- <c:map-property required="false" name="element">
- <c:simple-property required="false" name="className"/>
- <c:list-property name="enabled">
- <c:map-property required="false" name="element"/>
- </c:list-property>
- </c:map-property>
- </c:list-property>
- <c:map-property required="false" name="start">
- <c:simple-property type="boolean" required="false" name="ignored"/>
- <c:simple-property required="false" name="methodName"/>
- </c:map-property>
+ </parameters>
+ </operation>
+ <resource-configuration>
+ <c:simple-property required="false" name="auditMgrClass" description="The class that implements the AuditManager interface"/>
+ <c:simple-property required="false" name="authenticationMgrClass" description="The class that implements the AuthenticationManager interface"/>
+ <c:simple-property required="false" name="authorizationMgrClass" description="The class that implements the AuthorizationManager interface"/>
+ <c:simple-property required="false" name="identityTrustMgrClass" description="The class that implements the IdentityTrustManager interface"/>
+ <c:simple-property required="false" name="mappingMgrClass" description="The class that implements the MappingManager interface"/>
<c:simple-property required="false" name="state" description="The bean controller state"/>
- <c:map-property required="false" name="stop">
- <c:simple-property type="boolean" required="false" name="ignored"/>
- <c:simple-property required="false" name="methodName"/>
- </c:map-property>
- <c:list-property required="false" name="supplies">
- <c:map-property required="false" name="element"/>
- </c:list-property>
- <c:map-property required="false" readOnly="true" name="underlyingValue"/>
- <c:list-property required="false" name="uninstallCallbacks">
- <c:map-property required="false" name="element">
- <c:simple-property required="false" name="property"/>
- <c:simple-property required="false" name="signature"/>
- </c:map-property>
- </c:list-property>
- <c:list-property required="false" name="uninstalls">
- <c:map-property required="false" name="element">
- <c:simple-property required="false" name="bean"/>
- </c:map-property>
- </c:list-property>
</resource-configuration>
</service>
<service name="ServerConfig MCBean">
@@ -1742,25 +1868,10 @@
<c:simple-property required="false" readOnly="true" name="javaVersion"/>
</resource-configuration>
</service>
- <service name="ServiceBindingSet MCBean">
+ <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" name="defaultHostName" description="the host name bindings associated with this set should use not configured in the binding itself"/>
- <c:simple-property required="false" readOnly="true" name="name" description="the name of the set"/>
- <c:list-property required="false" readOnly="true" name="overrideBindings" description="bindings that either override or are additions to the base bindings configured in the ServiceBindingStore">
- <c:map-property required="false" name="element">
- <c:simple-property required="false" name="bindingName"/>
- <c:simple-property required="false" name="description"/>
- <c:simple-property type="boolean" required="false" name="fixedHostName"/>
- <c:simple-property type="boolean" required="false" name="fixedPort"/>
- <c:simple-property required="false" name="fullyQualifiedName"/>
- <c:simple-property required="false" name="hostName"/>
- <c:simple-property type="integer" required="false" name="port"/>
- <c:simple-property required="false" name="serviceBindingValueSourceClassName"/>
- <c:simple-property required="false" name="serviceName"/>
- </c:map-property>
- </c:list-property>
- <c:simple-property type="integer" required="false" name="portOffset" description="offset that should be applied to non-fixed-portbindings associated with this set"/>
- <c:simple-property required="false" name="state" description="The bean controller state"/>
+ <c:simple-property required="false" readOnly="true" name="contextRoot"/>
</resource-configuration>
</service>
<service name="ejb3x">
@@ -1801,6 +1912,7 @@
</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"/>
@@ -1809,6 +1921,7 @@
<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"/>
15 years, 7 months
EMBJOPR SVN: r420 - in trunk/jsfunit: src/test/java/org/jboss/jopr/jsfunit and 1 other directory.
by embjopr-commits@lists.jboss.org
Author: ozizka(a)redhat.com
Date: 2009-05-15 10:02:54 -0400 (Fri, 15 May 2009)
New Revision: 420
Modified:
trunk/jsfunit/
trunk/jsfunit/pom.xml
trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/AppConstants.java
trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/EmbjoprTestCase.java
Log:
Done JBQA-2344 - excecute automated tests using IE7
Property changes on: trunk/jsfunit
___________________________________________________________________
Name: svn:ignore
- nb-configuration.xml
target
nbactions.xml
+ nb-configuration.xml
TEST-TestSuite-01.xsl
CHANGES.txt
pom_1.xml
TEST-TestSuite-02.xsl
pom_05-XSLT.xml
pom_3.xml
pom_2.xml
pom_pure_maven.xml
target
TEST-TestSuite.xsl
pom_4.xml
nbactions.xml
Modified: trunk/jsfunit/pom.xml
===================================================================
--- trunk/jsfunit/pom.xml 2009-05-14 22:58:57 UTC (rev 419)
+++ trunk/jsfunit/pom.xml 2009-05-15 14:02:54 UTC (rev 420)
@@ -7,6 +7,7 @@
<cargo.jboss.bind.address>localhost</cargo.jboss.bind.address>
<cargo.plugin.version>1.0.1-SNAPSHOT</cargo.plugin.version><!-- Was: 1.0-SNAPSHOT -->
<jvm.args.debug></jvm.args.debug>
+ <htmlunit.browser>ff3</htmlunit.browser><!-- ff2 | ff3 | ie6 | ie7 -->
</properties>
<parent>
Modified: trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/AppConstants.java
===================================================================
--- trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/AppConstants.java 2009-05-14 22:58:57 UTC (rev 419)
+++ trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/AppConstants.java 2009-05-15 14:02:54 UTC (rev 420)
@@ -153,7 +153,7 @@
public static final String WAR_UNPACKED_ZIP = "unpacked-web1.war.zip";
- // RAR
+ // RAR
public static final String BASIC_RAR = "jbosstestadapter.rar";
Modified: trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/EmbjoprTestCase.java
===================================================================
--- trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/EmbjoprTestCase.java 2009-05-14 22:58:57 UTC (rev 419)
+++ trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/EmbjoprTestCase.java 2009-05-15 14:02:54 UTC (rev 420)
@@ -110,7 +110,30 @@
.getImplementationVersion();
log.info("Detected AS version: " + version);
isJBoss4 = version.startsWith("4");
+
+
+ // Browser branch and version
+
+ BrowserVersion browser = BrowserVersion.FIREFOX_3;
+
+ String browserProp = System.getProperty("htmlunit.browser");
+ if( "ff3".equals(browserProp) || "firefox3".equals(browserProp) ){
+ browser = BrowserVersion.FIREFOX_3;
+ }else
+ if( "ff2".equals(browserProp) || "firefox2".equals(browserProp) ){
+ browser = BrowserVersion.FIREFOX_2;
+ }else
+ if( "ie7".equals(browserProp) || "internetexplorer7".equals(browserProp) ){
+ browser = BrowserVersion.INTERNET_EXPLORER_7_0;
+ }else
+ if( "ie6".equals(browserProp) || "internetexplorer6".equals(browserProp) ){
+ browser = BrowserVersion.INTERNET_EXPLORER_6_0;
+ }
+ log.info("Simulating browser: "+browser.getNickName() + "('htmlunit.browser' sysprop: "+browserProp+")");
+
+
+
// Initial JSF request
WebClientSpec wcSpec = new WebClientSpec("/", BrowserVersion.FIREFOX_3);
15 years, 7 months
EMBJOPR SVN: r419 - in trunk/core/src/main: webapp and 1 other directory.
by embjopr-commits@lists.jboss.org
Author: ips
Date: 2009-05-14 18:58:57 -0400 (Thu, 14 May 2009)
New Revision: 419
Modified:
trunk/core/src/main/java/org/jboss/on/embedded/ui/ExceptionAction.java
trunk/core/src/main/webapp/error.xhtml
Log:
remove dependency on seam-debug.jar from ExceptionAction component
Modified: trunk/core/src/main/java/org/jboss/on/embedded/ui/ExceptionAction.java
===================================================================
--- trunk/core/src/main/java/org/jboss/on/embedded/ui/ExceptionAction.java 2009-05-14 20:51:44 UTC (rev 418)
+++ trunk/core/src/main/java/org/jboss/on/embedded/ui/ExceptionAction.java 2009-05-14 22:58:57 UTC (rev 419)
@@ -19,30 +19,35 @@
*/
package org.jboss.on.embedded.ui;
-import java.io.ByteArrayOutputStream;
-import java.io.PrintStream;
+import java.util.ArrayList;
+import java.util.List;
+import org.jboss.seam.ScopeType;
+import org.jboss.seam.util.Exceptions;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
-import org.jboss.seam.annotations.In;
-import org.jboss.seam.ScopeType;
+/**
+ * @author Ian Springer
+ */
@Name("exceptionAction")
@Scope(ScopeType.APPLICATION)
-public class ExceptionAction {
+public class ExceptionAction
+{
+ private static final String CAUGHT_EXCEPTION_COMPONENT_NAME = "org.jboss.seam.caughtException";
- @In("org.jboss.seam.caughtException")
- private Exception exception;
-
- public String getStackTrace() {
- ByteArrayOutputStream out = new ByteArrayOutputStream();
- this.exception.printStackTrace( new PrintStream(out,true) );
- this.exception = null;
- return out.toString();
- }
+ public Exception getException()
+ {
+ return (Exception)org.jboss.seam.contexts.Contexts.getConversationContext().get(CAUGHT_EXCEPTION_COMPONENT_NAME);
+ }
- public Exception getException()
- {
- return (Exception) org.jboss.seam.contexts.Contexts.getConversationContext().get("org.jboss.seam.caughtException");
- }
+ public List<Exception> getCauses()
+ {
+ List causes = new ArrayList();
+ for (Exception cause = getException(); cause != null; cause = Exceptions.getCause(cause))
+ {
+ causes.add(cause);
+ }
+ return causes;
+ }
}
Modified: trunk/core/src/main/webapp/error.xhtml
===================================================================
--- trunk/core/src/main/webapp/error.xhtml 2009-05-14 20:51:44 UTC (rev 418)
+++ trunk/core/src/main/webapp/error.xhtml 2009-05-14 22:58:57 UTC (rev 419)
@@ -32,10 +32,11 @@
<div id="errorbox">
<h1>#{messages['exception.heading']}</h1>
<p>#{messages['exception.paragraph1']}</p>
- <p>#{messages['exception.paragraph2a']} <a href="index.html">#{messages['exception.paragraph2b']}</a> #{messages['exception.paragraph2c']}</p>
+ <p>#{messages['exception.paragraph2a']} <a href="index.html">#{messages['exception.paragraph2b']}</a>
+ #{messages['exception.paragraph2c']}</p>
<h3 style="padding-top: 12px; border-bottom: 1px solid #e6eaef;">Error details:</h3>
<div id="codebox">
- <a4j:repeat value="#{org.jboss.seam.debug.contexts.exceptionCauses}" var="cause" rowKeyVar="rowKey">
+ <a4j:repeat value="#{exceptionAction.causes}" var="cause" rowKeyVar="rowKey">
<div style="margin-bottom: 15px">
<b><h:outputLabel rendered="#{rowKey ne 0}">Caused by: </h:outputLabel>#{cause}</b><br/>
<div style="margin-left: 20px">
15 years, 7 months
EMBJOPR SVN: r418 - in trunk/jsfunit: src/test/java/org/jboss/jopr/jsfunit/as5/jmsDestinations and 1 other directories.
by embjopr-commits@lists.jboss.org
Author: fjuma
Date: 2009-05-14 16:51:44 -0400 (Thu, 14 May 2009)
New Revision: 418
Modified:
trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/datasources/DatasourceDeletionTest.java
trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/jmsDestinations/JMSDeletionTest.java
trunk/jsfunit/testdata/datasources/expectedFiles/ExpectedMultipleDatasourcesAfterDeletion-ds.xml
Log:
Modifying the deletion tests for datasources and JMS destinations.
Modified: trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/datasources/DatasourceDeletionTest.java
===================================================================
--- trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/datasources/DatasourceDeletionTest.java 2009-05-14 18:10:36 UTC (rev 417)
+++ trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/datasources/DatasourceDeletionTest.java 2009-05-14 20:51:44 UTC (rev 418)
@@ -121,13 +121,10 @@
assertNull("The datasource was not removed after deletion (the ManagedComponent is non-null)",
getManagedComponent(propertiesMap.get("jndi-name"), componentType));
- // Make sure the entry was removed from the -ds.xml file (See JOPR-44)
- assertFalse(containsElement(propertiesMap.get("jndi-name"),
- datasourceType.getXmlElementName()));
-
- assertFalse("According to JMX view, the deleted datasource is still deployed",
- isDatasourceDeployed(propertiesMap.get("jndi-name"),
- datasourceType));
+ // The entry should still be found in the -ds.xml file
+ assertTrue("The datasource was removed from the -ds.xml file",
+ containsElement(propertiesMap.get("jndi-name"),
+ datasourceType.getXmlElementName()));
}
/**
@@ -151,9 +148,15 @@
// Make sure the ManagedComponent was removed
assertNull("The datasource was not removed after deletion (the ManagedComponent is non-null)",
getManagedComponent(jndiName, NO_TX_COMPONENT_TYPE));
-
- // Make sure only the No TX Datasource entry was removed
- // from the -ds.xml file
+
+ // Make sure the other datasources defined in the -ds.xml file were not
+ // removed
+ assertNotNull("Another datasource in the same -ds.xml file was also removed (the ManagedComponent is null)",
+ getManagedComponent("LocalTX1", LOCAL_TX_COMPONENT_TYPE));
+ assertNotNull("Another datasource in the same -ds.xml file was also removed (the ManagedComponent is null)",
+ getManagedComponent("LocalTX2", LOCAL_TX_COMPONENT_TYPE));
+
+ // Make sure the -ds.xml file remained unchanged
String actualDSFile = System.getProperty("jsfunit.deploy.dir")
+ "/MultipleDatasources-ds.xml";
String expectedDSFile = System.getProperty("jsfunit.testdata")
Modified: trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/jmsDestinations/JMSDeletionTest.java
===================================================================
--- trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/jmsDestinations/JMSDeletionTest.java 2009-05-14 18:10:36 UTC (rev 417)
+++ trunk/jsfunit/src/test/java/org/jboss/jopr/jsfunit/as5/jmsDestinations/JMSDeletionTest.java 2009-05-14 20:51:44 UTC (rev 418)
@@ -113,7 +113,7 @@
// Make sure the ManagedComponent was removed
assertNull("The destination was not removed after deletion (the ManagedComponent is non-null)",
getManagedComponent(jndiName, componentType));
- assertFalse("The entry was not removed from the -service.xml file after deletion",
+ assertTrue("The entry was removed from the -service.xml file after deletion",
containsElement(getDestinationDeploymentFile(jndiName),
SERVICE_FILE_CHILD_ELEMENT,
SERVICE_FILE_ROOT_ELEMENT));
Modified: trunk/jsfunit/testdata/datasources/expectedFiles/ExpectedMultipleDatasourcesAfterDeletion-ds.xml
===================================================================
--- trunk/jsfunit/testdata/datasources/expectedFiles/ExpectedMultipleDatasourcesAfterDeletion-ds.xml 2009-05-14 18:10:36 UTC (rev 417)
+++ trunk/jsfunit/testdata/datasources/expectedFiles/ExpectedMultipleDatasourcesAfterDeletion-ds.xml 2009-05-14 20:51:44 UTC (rev 418)
@@ -31,6 +31,38 @@
<driver-class>org.hsqldb.jdbcDriver</driver-class>
<connection-url>jdbc:hsqldb:${jboss.server.data.dir}${/}hypersonic${/}localDB</connection-url>
</local-tx-datasource>
+ <no-tx-datasource>
+ <jndi-name>NoTXDeletionTest</jndi-name>
+ <rar-name>jboss-local-jdbc.rar</rar-name>
+ <use-java-context>true</use-java-context>
+ <connection-definition>javax.sql.DataSource</connection-definition>
+ <jmx-invoker-name>jboss:service=invoker,type=jrmp</jmx-invoker-name>
+ <min-pool-size>5</min-pool-size>
+ <max-pool-size>20</max-pool-size>
+ <blocking-timeout-millis>55000</blocking-timeout-millis>
+ <idle-timeout-minutes>60</idle-timeout-minutes>
+ <prefill>true</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>
+ <type-mapping>FirstSQL/J</type-mapping>
+ </metadata>
+ <user-name>sa</user-name>
+ <password></password>
+ <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>org.hsqldb.jdbcDriver</driver-class>
+ <connection-url>jdbc:hsqldb:${jboss.server.data.dir}${/}hypersonic${/}localDB</connection-url>
+ </no-tx-datasource>
<local-tx-datasource>
<jndi-name>LocalTX2</jndi-name>
<rar-name>jboss-local-jdbc.rar</rar-name>
15 years, 7 months
EMBJOPR SVN: r417 - in trunk/jsfunit/testdata: war and 1 other directory.
by embjopr-commits@lists.jboss.org
Author: smcgowan(a)redhat.com
Date: 2009-05-14 14:10:36 -0400 (Thu, 14 May 2009)
New Revision: 417
Added:
trunk/jsfunit/testdata/ear/testscopedrar.ear
trunk/jsfunit/testdata/war/vhosts-test.war
Log:
additional test apps
Added: trunk/jsfunit/testdata/ear/testscopedrar.ear
===================================================================
(Binary files differ)
Property changes on: trunk/jsfunit/testdata/ear/testscopedrar.ear
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/jsfunit/testdata/war/vhosts-test.war
===================================================================
(Binary files differ)
Property changes on: trunk/jsfunit/testdata/war/vhosts-test.war
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
15 years, 7 months
EMBJOPR SVN: r416 - trunk/jbas5/etc/overlay/server/default/deploy.
by embjopr-commits@lists.jboss.org
Author: ips
Date: 2009-05-14 13:56:16 -0400 (Thu, 14 May 2009)
New Revision: 416
Added:
trunk/jbas5/etc/overlay/server/default/deploy/vhosts-test.war
Removed:
trunk/jbas5/etc/overlay/server/default/deploy/ROOT.war/
Log:
add a war that contains 2 vhosts; remove ROOT.war/index.html, as it's no longer necessary
Added: trunk/jbas5/etc/overlay/server/default/deploy/vhosts-test.war
===================================================================
(Binary files differ)
Property changes on: trunk/jbas5/etc/overlay/server/default/deploy/vhosts-test.war
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
15 years, 7 months
EMBJOPR SVN: r415 - trunk/jbas5/etc/overlay/server/default/deploy/messaging.
by embjopr-commits@lists.jboss.org
Author: ips
Date: 2009-05-13 21:15:04 -0400 (Wed, 13 May 2009)
New Revision: 415
Modified:
trunk/jbas5/etc/overlay/server/default/deploy/messaging/destinations-service.xml
Log:
remove ManagedObject annotations, which are no longer necessary
Modified: trunk/jbas5/etc/overlay/server/default/deploy/messaging/destinations-service.xml
===================================================================
--- trunk/jbas5/etc/overlay/server/default/deploy/messaging/destinations-service.xml 2009-05-14 00:54:45 UTC (rev 414)
+++ trunk/jbas5/etc/overlay/server/default/deploy/messaging/destinations-service.xml 2009-05-14 01:15:04 UTC (rev 415)
@@ -15,7 +15,6 @@
<mbean code="org.jboss.jms.server.destination.QueueService"
name="jboss.messaging.destination:service=Queue,name=DLQ"
xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
</mbean>
@@ -27,7 +26,6 @@
<mbean code="org.jboss.jms.server.destination.QueueService"
name="jboss.messaging.destination:service=Queue,name=ExpiryQueue"
xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
</mbean>
@@ -39,7 +37,6 @@
<mbean code="org.jboss.jms.server.destination.TopicService"
name="jboss.messaging.destination:service=Topic,name=testTopic"
xmbean-dd="xmdesc/Topic-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.TopicServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
<attribute name="SecurityConfig">
@@ -54,7 +51,6 @@
<mbean code="org.jboss.jms.server.destination.TopicService"
name="jboss.messaging.destination:service=Topic,name=securedTopic"
xmbean-dd="xmdesc/Topic-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.TopicServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
<attribute name="SecurityConfig">
@@ -67,7 +63,6 @@
<mbean code="org.jboss.jms.server.destination.TopicService"
name="jboss.messaging.destination:service=Topic,name=testDurableTopic"
xmbean-dd="xmdesc/Topic-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.TopicServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
<attribute name="SecurityConfig">
@@ -82,7 +77,6 @@
<mbean code="org.jboss.jms.server.destination.QueueService"
name="jboss.messaging.destination:service=Queue,name=testQueue"
xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
<attribute name="SecurityConfig">
@@ -97,7 +91,6 @@
<mbean code="org.jboss.jms.server.destination.QueueService"
name="jboss.messaging.destination:service=Queue,name=A"
xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
</mbean>
@@ -105,7 +98,6 @@
<mbean code="org.jboss.jms.server.destination.QueueService"
name="jboss.messaging.destination:service=Queue,name=B"
xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
</mbean>
@@ -113,7 +105,6 @@
<mbean code="org.jboss.jms.server.destination.QueueService"
name="jboss.messaging.destination:service=Queue,name=C"
xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
</mbean>
@@ -121,7 +112,6 @@
<mbean code="org.jboss.jms.server.destination.QueueService"
name="jboss.messaging.destination:service=Queue,name=D"
xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
</mbean>
@@ -129,7 +119,6 @@
<mbean code="org.jboss.jms.server.destination.QueueService"
name="jboss.messaging.destination:service=Queue,name=ex"
xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
</mbean>
@@ -140,7 +129,6 @@
<mbean code="org.jboss.jms.server.destination.QueueService"
name="jboss.messaging.destination:service=Queue,name=PrivateDLQ"
xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
</mbean>
@@ -148,7 +136,6 @@
<mbean code="org.jboss.jms.server.destination.QueueService"
name="jboss.messaging.destination:service=Queue,name=PrivateExpiryQueue"
xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
</mbean>
@@ -156,7 +143,6 @@
<mbean code="org.jboss.jms.server.destination.QueueService"
name="jboss.messaging.destination:service=Queue,name=QueueWithOwnDLQAndExpiryQueue"
xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
<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>
@@ -166,7 +152,6 @@
<mbean code="org.jboss.jms.server.destination.TopicService"
name="jboss.messaging.destination:service=Topic,name=TopicWithOwnDLQAndExpiryQueue"
xmbean-dd="xmdesc/Topic-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.TopicServiceMO)</annotation>
<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>
@@ -178,7 +163,6 @@
<mbean code="org.jboss.jms.server.destination.QueueService"
name="jboss.messaging.destination:service=Queue,name=QueueWithOwnRedeliveryDelay"
xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
<attribute name="RedeliveryDelay">5000</attribute>
@@ -187,7 +171,6 @@
<mbean code="org.jboss.jms.server.destination.TopicService"
name="jboss.messaging.destination:service=Topic,name=TopicWithOwnRedeliveryDelay"
xmbean-dd="xmdesc/Topic-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.TopicServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
<attribute name="RedeliveryDelay">5000</attribute>
@@ -200,7 +183,6 @@
<mbean code="org.jboss.jms.server.destination.QueueService"
name="jboss.messaging.destination:service=Queue,name=testDistributedQueue"
xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
<attribute name="Clustered">true</attribute>
@@ -209,10 +191,9 @@
<mbean code="org.jboss.jms.server.destination.TopicService"
name="jboss.messaging.destination:service=Topic,name=testDistributedTopic"
xmbean-dd="xmdesc/Topic-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.TopicServiceMO)</annotation>
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
<depends>jboss.messaging:service=PostOffice</depends>
<attribute name="Clustered">true</attribute>
</mbean>
-</server>
\ No newline at end of file
+</server>
15 years, 7 months