01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package fitnesse.authentication;
04:
05: import fitnesse.http.Request;
06: import fitnesse.FitNesseContext;
07:
08: public interface SecureOperation {
09: public abstract boolean shouldAuthenticate(FitNesseContext context,
10: Request request) throws Exception;
11: }
|