1 /* 2 Copyright (c) 2003 eInnovation Inc. All rights reserved 3 4 This library is free software; you can redistribute it and/or modify it under the terms 5 of the GNU Lesser General Public License as published by the Free Software Foundation; 6 either version 2.1 of the License, or (at your option) any later version. 7 8 This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 9 without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 10 See the GNU Lesser General Public License for more details. 11 */ 12 13 package com.openedit.modules.edit; 14 15 /** 16 * This interface contains constants pertaining to the edit module. 17 * 18 * @author Eric Galluzzo 19 */ 20 public interface EditConstants 21 { 22 /** 23 * The permission that allows a user to edit pages on a WSP site. 24 * 25 * @see com.openedit.users.User#hasPermission(String) 26 */ 27 public static final String EDIT_PERMISSION = "wsp.edit"; 28 } 29