--- experimental/server/ACL/ACL.java 2001/12/21 16:49:18 1.3 +++ experimental/server/ACL/ACL.java 2001/12/23 00:29:33 1.4 @@ -5,6 +5,7 @@ import uk.org.iscream.cms.server.util.*; import java.util.ArrayList; import java.net.InetAddress; +import java.io.Serializable; /** * Access Control List for use primarily @@ -15,16 +16,16 @@ import java.net.InetAddress; * the relevant check method. * * @author $Author: tdb $ - * @version $Id: ACL.java,v 1.3 2001/12/21 16:49:18 tdb Exp $ + * @version $Id: ACL.java,v 1.4 2001/12/23 00:29:33 tdb Exp $ */ -public class ACL { +public class ACL implements Serializable { //---FINAL ATTRIBUTES--- /** * The current CVS revision of this class */ - public static final String REVISION = "$Revision: 1.3 $"; + public static final String REVISION = "$Revision: 1.4 $"; /** * static to be used when adding an ALLOW rule to the ACL. @@ -194,7 +195,7 @@ public class ACL { /** * Wrapper class for an ACL rule. */ - private class ACLRule { + private class ACLRule implements Serializable { /** * Construct an ACL rule.