View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20041023143357Lbuild.88

BUILD COMPLETE -  build.88
Date of build: 10/23/2004 14:33:57
Time to build: 73 minutes 44 seconds
Last changed: 10/23/2004 14:26:44
Last log entry: Add javadocs for the parseTextSerialData and parseJavaBeanSerialData methods and when parsing a serialDataType=javaBean, if there is no attributeClass attribute given, use the MBeanAttributeInfo type as the java bean type.

 Unit Tests: (1973)  Total Errors and Failures: (41)
testAllTx_RWLockorg.jboss.test.cache.stress.EvictionLocalStressTestCase
testAllTx_RWLockorg.jboss.test.cache.stress.LocalStressTestCase
testWarXmlOverridesorg.jboss.test.classloader.test.ScopingUnitTestCase
testServletSessionLoadBalancingorg.jboss.test.cluster.test.WebSessionTestCase
testOIL2MutliSessionOneConnectionorg.jboss.test.jbossmq.perf.OIL2InvocationLayerStressTestCase
unknownorg.jboss.test.jbossmq.test.LargeMessageUnitTestCase
unknownorg.jboss.test.jbossmq.test.OILConnectionUnitTestCase
testMCFDefaultValuesorg.jboss.test.jca.test.DeploymentUnitTestCase
testDeploySARorg.jboss.test.jmx.test.DeployServiceUnitTestCase
testDependsListElementorg.jboss.test.jmx.test.DeployServiceUnitTestCase
testCrashInStartorg.jboss.test.jmx.test.DeployServiceUnitTestCase
testMBeanDependsOnEJBorg.jboss.test.jmx.test.MBeanDependsOnEJBUnitTestCase
testBrokenPackageRedeploymentorg.jboss.test.jmx.test.UndeployBrokenPackageUnitTestCase
testBadEjbRedeploymentorg.jboss.test.jmx.test.UndeployBrokenPackageUnitTestCase
testBadSideAffectsorg.jboss.test.jmx.test.UndeployBrokenPackageUnitTestCase
testSSLAccessorg.jboss.test.jrmp.test.CustomSocketsUnitTestCase
testServerFoundorg.jboss.test.jrmp.test.CustomSocketsUnitTestCase
testSecureHttpInvokerorg.jboss.test.naming.test.SecurityUnitTestCase
testHttpReadonlyContextLookuporg.jboss.test.naming.test.SecurityUnitTestCase
testSecureEJBViaLoginInitialContextFactoryorg.jboss.test.naming.test.SecurityUnitTestCase
testHaParitionNameorg.jboss.test.naming.test.SimpleUnitTestCase
testDiscoveryPortorg.jboss.test.naming.test.SimpleUnitTestCase
testEvictionorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCase
testEvictionReplicationorg.jboss.test.cache.test.eviction.ReplicatedLRUPolicyUnitTestCase
testStateTransferorg.jboss.test.cache.test.replicated.AsyncUnitTestCase
testSyncReplorg.jboss.test.cache.test.replicated.AsyncUnitTestCase
testSyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCase
testASyncReplorg.jboss.test.cache.test.replicated.SyncTxUnitTestCase
testPutorg.jboss.test.cache.test.replicated.SyncTxUnitTestCase
testPutTxorg.jboss.test.cache.test.replicated.SyncTxUnitTestCase
testStateReplicationorg.jboss.test.cluster.test.DRMTestCase
testCounterSimpleNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCase
testCounterDifferenceNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCase
testGaugeSimpleBothNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCase
testGaugeSimpleHighNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCase
testGaugeSimpleLowNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCase
testStringBothNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCase
testStringMatchNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCase
testStringDifferNotificationorg.jboss.test.jbossmx.compliance.monitor.BasicTestCase
testNameChangesorg.jboss.test.naming.test.SimpleUnitTestCase
testCreateCallerorg.jboss.test.security.test.EJBSpecUnitTestCase
 

 Modifications since last build:  (8)
1.32.4.2modifiedstarksmsystem/src/main/org/jboss/system/ServiceConfigurator.javaAdd javadocs for the parseTextSerialData and parseJavaBeanSerialData methods and when parsing a serialDataType=javaBean, if there is no attributeClass attribute given, use the MBeanAttributeInfo type as the java bean type.
1.6.6.2modifiedstarksmcommon/src/main/org/jboss/util/propertyeditor/PropertyEditors.javaImprove existing property editorsUse Integer.decode instead of parseIntUse JBoss editors over sun ones by default as the sun versions are not very flexible. Add IntArrayEditor for int[] types.
1.32.4.1modifiedstarksmsystem/src/main/org/jboss/system/ServiceConfigurator.javaAdd support for different formats of attribute serial data. In addition to the default text format, there is support for a javaBean format.
1.1.2.2modifiedstarksmsystem/src/resources/dtd/jboss-service_4_0.dtdAdd support for different formats of attribute serial data. In addition to the default text format, there is support for a javaBean format.
1.1.2.1modifiedstarksmsystem/src/resources/dtd/jboss-service_4_0.dtdAdd attributeClass and serialDataType attributes to the mbean/attribute element to support configuration of non-trivial java bean attribute types. A property element has also been added to support the specification of the java bean configuration, for example: <mbean code="org.jboss.invocation.jrmp.server.JRMPInvoker" name="jboss:service=invoker,type=jrmp,socketType=SSLSocketFactory,wantsClientAuth=true"> <attribute name="RMIObjectPort">0</attribute> <attribute name="RMIClientSocketFactoryBean" attributeClass="org.jboss.security.ssl.RMISSLClientSocketFactory" serialDataType="javaBean"> <property name="wantsClientAuth">true</property> <property name="needsClientAuth">false</property> </attribute> <attribute name="RMIServerSocketFactoryBean" attributeClass="org.jboss.security.ssl.RMISSLServerSocketFactory" serialDataType="javaBean"> <property name="bindAddress">${jboss.bind.address}</property> <property name="securityDomain">java:/jaas/rmi-ssl</property> <property name="wantsClientAuth">true</property> <property name="needsClientAuth">true</property> </attribute> </mbean>
1.6.2.3modifiedstarksmcommon/src/main/org/jboss/util/xml/JBossEntityResolver.javaAdd a mapping for the jboss-service_4_0.dtd
1.27.2.3modifiedstarksmsecurity/src/main/org/jboss/security/plugins/JaasSecurityManagerService.javaInstall the SecurityDomain property editor
1.6.6.1modifiedstarksmcommon/src/main/org/jboss/util/propertyeditor/PropertyEditors.javaAdd a utility method which takes the properties found in the given property map to the bean using the property editor registered for the property.

Reply via email to