File:  [Public] / java / classes / org / w3c / jigsaw / acl / HTTPPermission.java
Revision 1.4: download - view: text, annotated - select for diffs
Sat Jun 16 15:48:44 2012 UTC (12 years ago) by ylafon
Branches: MAIN
CVS tags: HEAD
various updates, use of StringBuilder, for each loops, starting some generics, some optims, ipv6 patch for acls

// HTTPPermission.java
// $Id: HTTPPermission.java,v 1.4 2012/06/16 15:48:44 ylafon Exp $
// (c) COPYRIGHT MIT, INRIA and Keio, 1999.
// Please first read the full copyright statement in file COPYRIGHT.html

package org.w3c.jigsaw.acl;

import java.security.acl.Permission;

import org.w3c.jigsaw.http.Request;

/**
 * @version $Revision: 1.4 $
 * @author  Benoît Mahé (bmahe@w3.org)
 */
public class HTTPPermission implements Permission {

    protected String method = null;

    protected String getMethod() {
	return method;
    }

    public HTTPPermission(Request request) {
	this.method = request.getMethod();
    }

    public boolean equals(Object another) {
	if (another instanceof HTTPPermission) {
	    return method.equals(((HTTPPermission)another).getMethod());
	} else {
	    return method.equals(another.toString());
	}
    }

    public boolean equalsString(String another) {
        return method.equals(another);
    }

    public String toString() {
	return method+" permission";
    }

}

Webmaster