01: // JAcl.java
02: // $Id: JAcl.java,v 1.1 1999/04/21 09:32:45 bmahe Exp $
03: // (c) COPYRIGHT MIT, INRIA and Keio, 1999.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.jigsaw.acl;
07:
08: import java.security.acl.Acl;
09:
10: import org.w3c.tools.resources.MetaDataFrame;
11:
12: /**
13: * @version $Revision: 1.1 $
14: * @author Benoît Mahé (bmahe@w3.org)
15: */
16: public abstract class JAcl extends MetaDataFrame implements Acl {
17:
18: }
|