|
| 1.3 | modified | starksm | server/src/main/org/jboss/ejb/plugins/JaccAuthorizationInterceptor.java | Use a PrivilegedExceptionAction for accessing the "javax.security.auth.Subject.container" JACC PolicyContext.getContext() value. |
| 1.8 | modified | starksm | server/src/main/org/jboss/ejb/plugins/SecurityActions.java | Use a PrivilegedExceptionAction for accessing the "javax.security.auth.Subject.container" JACC PolicyContext.getContext() value. |
| 1.7 | modified | starksm | security/src/main/org/jboss/security/jacc/DelegatingPolicy.java | When run with a security manager the act of class loading can trigger security checks which in turn causes this classes implies method to be called as soon as the this class is installed as the Policy implementation. The implies method cannot cause class loading to occur before there is the delegation to the non-JACC Policy provider or else an infinite recursion scenario arises where entrance into implies triggers class loading which recurses into implies. Resolves [JBAS-1363] JACC DelegatingPolicy will not work with a SecurityManager installed. |
| 1.1 | added | bwang00 | cache/src/main/org/jboss/cache/transaction/BatchModeTransactionManager.java | Refactored DummyTransactionManager and create a BatchModeTM that does not bind into jndi directly |
| 1.1 | added | bwang00 | cache/src/main/org/jboss/cache/transaction/DummyBaseTransactionManager.java | Refactored DummyTransactionManager and create a BatchModeTM that does not bind into jndi directly |
| 1.22 | modified | bwang00 | cache/src/main/org/jboss/cache/transaction/DummyTransaction.java | Refactored DummyTransactionManager and create a BatchModeTM that does not bind into jndi directly |
| 1.17 | modified | bwang00 | cache/src/main/org/jboss/cache/transaction/DummyTransactionManager.java | Refactored DummyTransactionManager and create a BatchModeTM that does not bind into jndi directly |
| 1.4 | deleted | starksm | testsuite/src/resources/test-configs/tomcat-ssl/deploy/jbossweb-tomcat50.sar/server.xml | Update for the tomcat55 sar |
| 1.3 | deleted | starksm | testsuite/src/resources/test-configs/tomcat-ssl/deploy/jbossweb-tomcat50.sar/META-INF/jboss-service.xml | Update for the tomcat55 sar |
| 1.2 | deleted | starksm | testsuite/src/resources/test-configs/jacc/deploy/jbossweb-tomcat50.sar/server.xml | Update for the tomcat55 sar |
| 1.2 | deleted | starksm | testsuite/src/resources/test-configs/jacc/deploy/jbossweb-tomcat50.sar/META-INF/jboss-service.xml | Update for the tomcat55 sar |
| 1.3 | deleted | ejort | kernel/src/resources/test/org/jboss/test/kernel/xml/test/testAttributeDependency.xml | Add the xml deployer's test xml files to the test classpathusing the new <resource/> definition. |
| 1.3 | deleted | ejort | kernel/src/resources/test/org/jboss/test/kernel/xml/test/testAttributeDependencyDependentState.xml | Add the xml deployer's test xml files to the test classpathusing the new <resource/> definition. |
| 1.2 | deleted | ejort | kernel/src/resources/test/org/jboss/test/kernel/xml/test/testConfigure.xml | Add the xml deployer's test xml files to the test classpathusing the new <resource/> definition. |
| 1.3 | deleted | ejort | kernel/src/resources/test/org/jboss/test/kernel/xml/test/testConstructorDependency.xml | Add the xml deployer's test xml files to the test classpathusing the new <resource/> definition. |
| 1.2 | deleted | ejort | kernel/src/resources/test/org/jboss/test/kernel/xml/test/testDemandSupply.xml | Add the xml deployer's test xml files to the test classpathusing the new <resource/> definition. |
| 1.3 | deleted | ejort | kernel/src/resources/test/org/jboss/test/kernel/xml/test/testDemandSupplyWhenRequired.xml | Add the xml deployer's test xml files to the test classpathusing the new <resource/> definition. |
| 1.2 | deleted | ejort | kernel/src/resources/test/org/jboss/test/kernel/xml/test/testFactoryDependency.xml | Add the xml deployer's test xml files to the test classpathusing the new <resource/> definition. |
| 1.2 | deleted | ejort | kernel/src/resources/test/org/jboss/test/kernel/xml/test/testStaticFactoryDependency.xml | Add the xml deployer's test xml files to the test classpathusing the new <resource/> definition. |
| 1.7 | modified | ejort | kernel/.classpath | Add the xml deployer's test xml files to the test classpathusing the new <resource/> definition. |
| 1.4 | modified | ejort | kernel/jbossbuild.xml | Add the xml deployer's test xml files to the test classpathusing the new <resource/> definition. |
| 1.7 | modified | ejort | kernel/src/main/org/jboss/kernel/plugins/dependency/basic/BasicKernelController.java | Document the dependency visitor interim solution, including the TODOs |
| 1.6 | modified | ejort | kernel/src/main/org/jboss/kernel/plugins/dependency/basic/BasicKernelController.java | Changed the preprocess of MetaData into a type of visitor pattern.This needs revisiting (sic!) to be a more traditional visitor patternrather than using instanceof.And also the need to find a cleaner way to define whichdependencies are required at which kernel state.Rather than the current hardwiring in BasicKernelControllerthat every dependency is INSTANTIATE except those in theAttributeMetaData context which are CONFIGURE. |
| 1.2 | modified | ejort | kernel/src/tests/org/jboss/test/kernel/config/support/SimpleBeanFactory.java | Changed the preprocess of MetaData into a type of visitor pattern.This needs revisiting (sic!) to be a more traditional visitor patternrather than using instanceof.And also the need to find a cleaner way to define whichdependencies are required at which kernel state.Rather than the current hardwiring in BasicKernelControllerthat every dependency is INSTANTIATE except those in theAttributeMetaData context which are CONFIGURE. |
| 1.2 | modified | ejort | kernel/src/main/org/jboss/beans/metadata/spi/FeatureMetaData.java | Changed the preprocess of MetaData into a type of visitor pattern.This needs revisiting (sic!) to be a more traditional visitor patternrather than using instanceof.And also the need to find a cleaner way to define whichdependencies are required at which kernel state.Rather than the current hardwiring in BasicKernelControllerthat every dependency is INSTANTIATE except those in theAttributeMetaData context which are CONFIGURE. |
| 1.1 | added | ejort | kernel/src/main/org/jboss/beans/metadata/spi/MetaDataVisitor.java | Changed the preprocess of MetaData into a type of visitor pattern.This needs revisiting (sic!) to be a more traditional visitor patternrather than using instanceof.And also the need to find a cleaner way to define whichdependencies are required at which kernel state.Rather than the current hardwiring in BasicKernelControllerthat every dependency is INSTANTIATE except those in theAttributeMetaData context which are CONFIGURE. |
| 1.1 | added | ejort | kernel/src/main/org/jboss/beans/metadata/spi/MetaDataVisitorNode.java | Changed the preprocess of MetaData into a type of visitor pattern.This needs revisiting (sic!) to be a more traditional visitor patternrather than using instanceof.And also the need to find a cleaner way to define whichdependencies are required at which kernel state.Rather than the current hardwiring in BasicKernelControllerthat every dependency is INSTANTIATE except those in theAttributeMetaData context which are CONFIGURE. |
| 1.3 | modified | ejort | kernel/src/main/org/jboss/beans/metadata/spi/ValueMetaData.java | Changed the preprocess of MetaData into a type of visitor pattern.This needs revisiting (sic!) to be a more traditional visitor patternrather than using instanceof.And also the need to find a cleaner way to define whichdependencies are required at which kernel state.Rather than the current hardwiring in BasicKernelControllerthat every dependency is INSTANTIATE except those in theAttributeMetaData context which are CONFIGURE. |
| 1.2 | modified | ejort | kernel/src/tests/org/jboss/test/kernel/config/test/FactoryTestCase.java | Changed the preprocess of MetaData into a type of visitor pattern.This needs revisiting (sic!) to be a more traditional visitor patternrather than using instanceof.And also the need to find a cleaner way to define whichdependencies are required at which kernel state.Rather than the current hardwiring in BasicKernelControllerthat every dependency is INSTANTIATE except those in theAttributeMetaData context which are CONFIGURE. |
| 1.3 | modified | ejort | kernel/src/main/org/jboss/beans/metadata/plugins/AbstractAttributeMetaData.java | Changed the preprocess of MetaData into a type of visitor pattern.This needs revisiting (sic!) to be a more traditional visitor patternrather than using instanceof.And also the need to find a cleaner way to define whichdependencies are required at which kernel state.Rather than the current hardwiring in BasicKernelControllerthat every dependency is INSTANTIATE except those in theAttributeMetaData context which are CONFIGURE. |
| 1.5 | modified | ejort | kernel/src/main/org/jboss/beans/metadata/plugins/AbstractBeanMetaData.java | Changed the preprocess of MetaData into a type of visitor pattern.This needs revisiting (sic!) to be a more traditional visitor patternrather than using instanceof.And also the need to find a cleaner way to define whichdependencies are required at which kernel state.Rather than the current hardwiring in BasicKernelControllerthat every dependency is INSTANTIATE except those in theAttributeMetaData context which are CONFIGURE. |
| 1.4 | modified | ejort | kernel/src/main/org/jboss/beans/metadata/plugins/AbstractFeatureMetaData.java | Changed the preprocess of MetaData into a type of visitor pattern.This needs revisiting (sic!) to be a more traditional visitor patternrather than using instanceof.And also the need to find a cleaner way to define whichdependencies are required at which kernel state.Rather than the current hardwiring in BasicKernelControllerthat every dependency is INSTANTIATE except those in theAttributeMetaData context which are CONFIGURE. |
| 1.3 | modified | ejort | kernel/src/main/org/jboss/beans/metadata/plugins/AbstractParameterMetaData.java | Changed the preprocess of MetaData into a type of visitor pattern.This needs revisiting (sic!) to be a more traditional visitor patternrather than using instanceof.And also the need to find a cleaner way to define whichdependencies are required at which kernel state.Rather than the current hardwiring in BasicKernelControllerthat every dependency is INSTANTIATE except those in theAttributeMetaData context which are CONFIGURE. |
| 1.3 | modified | ejort | kernel/src/main/org/jboss/beans/metadata/plugins/AbstractValueMetaData.java | Changed the preprocess of MetaData into a type of visitor pattern.This needs revisiting (sic!) to be a more traditional visitor patternrather than using instanceof.And also the need to find a cleaner way to define whichdependencies are required at which kernel state.Rather than the current hardwiring in BasicKernelControllerthat every dependency is INSTANTIATE except those in theAttributeMetaData context which are CONFIGURE. |
| 1.3 | modified | ejort | kernel/src/main/org/jboss/beans/metadata/plugins/AbstractConstructorMetaData.java | Changed the preprocess of MetaData into a type of visitor pattern.This needs revisiting (sic!) to be a more traditional visitor patternrather than using instanceof.And also the need to find a cleaner way to define whichdependencies are required at which kernel state.Rather than the current hardwiring in BasicKernelControllerthat every dependency is INSTANTIATE except those in theAttributeMetaData context which are CONFIGURE. |
| 1.2 | modified | patriot1burke | container/src/main/org/jboss/reflect/EnumValue.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.2 | modified | patriot1burke | container/src/main/org/jboss/reflect/FieldInfo.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.1 | added | patriot1burke | container/src/main/org/jboss/reflect/InheritableAnnotationHolder.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.2 | modified | patriot1burke | container/src/main/org/jboss/reflect/InterfaceInfo.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.2 | modified | patriot1burke | container/src/main/org/jboss/reflect/MethodInfo.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.2 | modified | patriot1burke | container/src/main/org/jboss/reflect/PrimitiveValue.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.3 | modified | patriot1burke | container/src/main/org/jboss/reflect/Value.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.2 | modified | patriot1burke | container/src/main/org/jboss/reflect/AnnotatedInfo.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.4 | modified | patriot1burke | container/src/main/org/jboss/reflect/AnnotationAttribute.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.1 | added | patriot1burke | container/src/main/org/jboss/reflect/AnnotationHolder.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.2 | modified | patriot1burke | container/src/main/org/jboss/reflect/AnnotationInfo.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.3 | modified | patriot1burke | container/src/main/org/jboss/reflect/AnnotationValue.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.2 | modified | patriot1burke | container/src/main/org/jboss/reflect/ArrayInfo.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.2 | modified | patriot1burke | container/src/main/org/jboss/reflect/ArrayValue.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.2 | modified | patriot1burke | container/src/main/org/jboss/reflect/ClassInfo.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.2 | modified | patriot1burke | container/src/main/org/jboss/reflect/ClassValue.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.2 | modified | patriot1burke | container/src/main/org/jboss/reflect/ConstructorInfo.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.2 | modified | patriot1burke | container/src/main/org/jboss/reflect/EnumConstantInfo.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.2 | modified | patriot1burke | container/src/main/org/jboss/reflect/EnumInfo.java | make it easier to override remote jndi bindingwrote a tutorial for the docs on this. |
| 1.3 | modified | telrod | server/src/main/org/jboss/invocation/unified/interfaces/UnifiedInvokerProxy.java | JBREM-61 Will now catch java.rmi.RemoteException and rethrow wrapped inside ServerException. |