--- experimental/server/ACL/ACL.java 2001/12/31 01:49:13 1.7 +++ experimental/server/ACL/ACL.java 2001/12/31 02:57:00 1.8 @@ -17,7 +17,7 @@ import java.io.Serializable; * the relevant check method. * * @author $Author: tdb $ - * @version $Id: ACL.java,v 1.7 2001/12/31 01:49:13 tdb Exp $ + * @version $Id: ACL.java,v 1.8 2001/12/31 02:57:00 tdb Exp $ */ public class ACL implements Serializable { @@ -26,7 +26,7 @@ public class ACL implements Serializable { /** * The current CVS revision of this class */ - public static final String REVISION = "$Revision: 1.7 $"; + public static final String REVISION = "$Revision: 1.8 $"; /** * static to be used when adding an ALLOW rule to the ACL. @@ -199,6 +199,7 @@ public class ACL implements Serializable { */ public String toString() { StringBuffer acl = new StringBuffer(); + acl.append(FormatName.getName(_name, getClass().getName(), REVISION)); acl.append("{"); for(int i=0; i < _acl.size(); i++) { acl.append((ACLRule) _acl.get(i));