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.wiki.*;
06:
07: public class SecureWriteOperation extends SecurePageOperation {
08: protected String getSecurityMode() {
09: return WikiPage.SECURE_WRITE;
10: }
11: }
|