/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.wiki.display.context; /** * @author Iván Zaera */ public class WikiUIItemKeys { public static final String ADD_CHILD_PAGE = WikiUIItemKeys.class.getName() + "#add-child-page"; public static final String ADD_PAGE = WikiUIItemKeys.class.getName() + "#add-page"; public static final String COPY = WikiUIItemKeys.class.getName() + "#copy"; public static final String DELETE = WikiUIItemKeys.class.getName() + "#delete"; public static final String EDIT = WikiUIItemKeys.class.getName() + "#edit"; public static final String MOVE = WikiUIItemKeys.class.getName() + "#move"; public static final String PERMISSIONS = WikiUIItemKeys.class.getName() + "#permissions"; public static final String PRINT = WikiUIItemKeys.class.getName() + "#print"; public static final String SUBSCRIBE = WikiUIItemKeys.class.getName() + "#subscribe"; public static final String UNSUBSCRIBE = WikiUIItemKeys.class.getName() + "#unsubscribe"; }