[seam-commits] Seam SVN: r9219 - trunk/src/main/org/jboss/seam/security.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Tue Oct 7 17:08:44 EDT 2008
Author: shane.bryzak at jboss.com
Date: 2008-10-07 17:08:44 -0400 (Tue, 07 Oct 2008)
New Revision: 9219
Modified:
trunk/src/main/org/jboss/seam/security/SecurityInterceptor.java
Log:
JBSEAM-3526
Modified: trunk/src/main/org/jboss/seam/security/SecurityInterceptor.java
===================================================================
--- trunk/src/main/org/jboss/seam/security/SecurityInterceptor.java 2008-10-07 15:11:44 UTC (rev 9218)
+++ trunk/src/main/org/jboss/seam/security/SecurityInterceptor.java 2008-10-07 21:08:44 UTC (rev 9219)
@@ -1,5 +1,6 @@
package org.jboss.seam.security;
+import java.io.Serializable;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.util.HashMap;
@@ -25,11 +26,11 @@
*/
@Interceptor(type=InterceptorType.CLIENT,
around=AsynchronousInterceptor.class)
-public class SecurityInterceptor extends AbstractInterceptor
+public class SecurityInterceptor extends AbstractInterceptor implements Serializable
{
private static final long serialVersionUID = -6567750187000766925L;
- private Map<Method,Restriction> restrictions = new HashMap<Method,Restriction>();
+ private transient Map<Method,Restriction> restrictions = new HashMap<Method,Restriction>();
private class Restriction
{
More information about the seam-commits
mailing list