diff --git a/contributors.txt b/contributors.txt index 7e9332ad91..578059e3ce 100644 --- a/contributors.txt +++ b/contributors.txt @@ -32,7 +32,9 @@ contributions to the Acegi Security System for Spring project: * Karel Miarka contributed a fix for EH-CACHE NPEs, additional event handling for DaoAuthenticationProvider, and the - PasswordAuthenticationProvider-related classes + PasswordAuthenticationProvider-related (including LDAP DAO) classes. + +* James Monaghan contributed the AcegiRemoteInvocation support classes. * Anyone else I've forgotten (please let me know so I can correct this). diff --git a/sandbox/src/main/java/org/acegisecurity/remoting/AcegiRemoteInvocation.java b/sandbox/src/main/java/org/acegisecurity/remoting/AcegiRemoteInvocation.java new file mode 100644 index 0000000000..89dd349849 --- /dev/null +++ b/sandbox/src/main/java/org/acegisecurity/remoting/AcegiRemoteInvocation.java @@ -0,0 +1,58 @@ +/* Copyright 2004 Acegi Technology Pty Limited + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.sf.acegisecurity.remoting; + +import net.sf.acegisecurity.context.Context; +import net.sf.acegisecurity.context.ContextHolder; + +import org.aopalliance.intercept.MethodInvocation; + +import org.springframework.remoting.support.RemoteInvocation; + +import java.lang.reflect.InvocationTargetException; + + +/** + * DOCUMENT ME! + * + * @author James Monaghan + * @version $Id$ + */ +public class AcegiRemoteInvocation extends RemoteInvocation { + //~ Instance fields ======================================================== + + private Context context; + + //~ Constructors =========================================================== + + public AcegiRemoteInvocation(MethodInvocation methodInvocation) { + super(methodInvocation); + context = ContextHolder.getContext(); + } + + //~ Methods ================================================================ + + public Object invoke(Object targetObject) + throws NoSuchMethodException, IllegalAccessException, + InvocationTargetException { + ContextHolder.setContext(context); + + Object result = super.invoke(targetObject); + ContextHolder.setContext(null); + + return result; + } +} diff --git a/sandbox/src/main/java/org/acegisecurity/remoting/AcegiRemoteInvocationFactory.java b/sandbox/src/main/java/org/acegisecurity/remoting/AcegiRemoteInvocationFactory.java new file mode 100644 index 0000000000..fabf02e770 --- /dev/null +++ b/sandbox/src/main/java/org/acegisecurity/remoting/AcegiRemoteInvocationFactory.java @@ -0,0 +1,37 @@ +/* Copyright 2004 Acegi Technology Pty Limited + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.sf.acegisecurity.remoting; + +import org.aopalliance.intercept.MethodInvocation; + +import org.springframework.remoting.support.RemoteInvocation; +import org.springframework.remoting.support.RemoteInvocationFactory; + + +/** + * DOCUMENT ME! + * + * @author James Monaghan + * @version $Id$ + */ +public class AcegiRemoteInvocationFactory implements RemoteInvocationFactory { + //~ Methods ================================================================ + + public RemoteInvocation createRemoteInvocation( + MethodInvocation methodInvocation) { + return new AcegiRemoteInvocation(methodInvocation); + } +} diff --git a/sandbox/src/main/java/org/acegisecurity/remoting/package.html b/sandbox/src/main/java/org/acegisecurity/remoting/package.html new file mode 100644 index 0000000000..1b0cf81e9d --- /dev/null +++ b/sandbox/src/main/java/org/acegisecurity/remoting/package.html @@ -0,0 +1,21 @@ + + +Enables use of Spring's remoting extension points to propogate +security identity from one JVM to the remote JVM. + +

The beans are wired as follows: + +

+ +<bean id="test" class="org.springframework.remoting.rmi.RmiProxyFactoryBean">
+ <property name="serviceUrl"><value>rmi://localhost/Test</value></property>
+ <property name="serviceInterface"><value>test.TargetInterface</value></property>
+ <property name="refreshStubOnConnectFailure"><value>true</value></property>
+ <property name="remoteInvocationFactory"><ref bean="remoteInvocationFactory"/></property>
+</bean>
+
+<bean id="remoteInvocationFactory" class="net.sf.acegisecurity.remoting.AcegiRemoteInvocationFactory"/>
+
+ + +