--- java/classes/org/w3c/jigsaw/acl/AclPrincipal.java 1999/04/27 15:05:47 1.3 +++ java/classes/org/w3c/jigsaw/acl/AclPrincipal.java 1999/10/12 12:27:36 1.4 @@ -1,5 +1,5 @@ // AclPrincipal.java -// $Id: AclPrincipal.java,v 1.3 1999/04/27 15:05:47 bmahe Exp $ +// $Id: AclPrincipal.java,v 1.4 1999/10/12 12:27:36 ylafon Exp $ // (c) COPYRIGHT MIT, INRIA and Keio, 1999. // Please first read the full copyright statement in file COPYRIGHT.html @@ -9,36 +9,36 @@ import java.security.Principal; import java.net.InetAddress; /** - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ * @author Benoît Mahé (bmahe@w3.org) */ -abstract public interface AclPrincipal extends Principal { +public interface AclPrincipal extends Principal { /** * Get the realm associated to this principal.(could be his group) * @return the realm name. */ - abstract public String getRealm(); + public String getRealm(); /** * Get the password associated to this principal. * @return the password */ - abstract public String getPassword(); + public String getPassword(); /** * Set a parameter. * @param name the parameter name * @param value the parameter value */ - abstract public void setValue(String name, Object value); + public void setValue(String name, Object value); /** * Get a parameter value. * @param name the parameter name. * @return the parameter value */ - abstract public Object getValue(String name); + public Object getValue(String name); /** * Return true if the IPadress associated to this principal match @@ -46,7 +46,7 @@ abstract public interface AclPrincipal e * @param adr an IP adress * @return true if the ip adress match. */ - abstract public boolean matchIP(InetAddress adr); + public boolean matchIP(InetAddress adr); }