/********************************************************************************** * $URL:https://source.sakaiproject.org/svn/osp/trunk/presentation/api/src/java/org/theospi/portfolio/presentation/PresentationFunctionConstants.java $ * $Id:PresentationFunctionConstants.java 9134 2006-05-08 20:28:42Z chmaurer@iupui.edu $ *********************************************************************************** * * Copyright (c) 2005, 2006, 2007, 2008 The Sakai Foundation * * Licensed under the Educational Community License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.opensource.org/licenses/ECL-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * **********************************************************************************/ package org.theospi.portfolio.presentation; public class PresentationFunctionConstants { public final static String PRES_TOOL_ID = "osp.presentation"; public final static String TEMPLATE_PREFIX = "osp.presentation.template."; public final static String DELETE_TEMPLATE = TEMPLATE_PREFIX + "delete"; public final static String EDIT_TEMPLATE = TEMPLATE_PREFIX + "edit"; public final static String COPY_TEMPLATE = TEMPLATE_PREFIX + "copy"; public final static String PUBLISH_TEMPLATE = TEMPLATE_PREFIX + "publish"; public final static String CREATE_TEMPLATE = TEMPLATE_PREFIX + "create"; public final static String EXPORT_TEMPLATE = TEMPLATE_PREFIX + "export"; public final static String PRESENTATION_PREFIX = "osp.presentation."; public final static String DELETE_PRESENTATION = PRESENTATION_PREFIX + "delete"; public final static String EDIT_PRESENTATION = PRESENTATION_PREFIX + "edit"; public final static String CREATE_PRESENTATION = PRESENTATION_PREFIX + "create"; public final static String VIEW_PRESENTATION = PRESENTATION_PREFIX + "view"; public final static String COMMENT_PRESENTATION = PRESENTATION_PREFIX + "comment"; public final static String HIDE_PRESENTATION = PRESENTATION_PREFIX + "hide"; public final static String REVIEW_PRESENTATION = PRESENTATION_PREFIX + "review"; public final static String REQUEST_VIEW_PRESENTATION = PRESENTATION_PREFIX + "request"; public final static String PRESENTATION_SHARE_USER_EVENT_REFERENCE_PREFIX = "ospPresentation"; public final static String PRESENTATION_SHARE_USER_CACHE_PREFIX = "sharedList"; public final static String PRESENTATION_SHARE_USER = "presentationShareUser"; public final static String PRESENTATION_SHARE_USER_EVENT_REFERENCE_DELIM = "/"; public final static String LAYOUT_PREFIX = "osp.presentation.layout."; public final static String DELETE_LAYOUT = LAYOUT_PREFIX + "delete"; public final static String EDIT_LAYOUT = LAYOUT_PREFIX + "edit"; public final static String COPY_LAYOUT = LAYOUT_PREFIX + "copy"; public final static String PUBLISH_LAYOUT = LAYOUT_PREFIX + "publish"; public final static String CREATE_LAYOUT = LAYOUT_PREFIX + "create"; public final static String SUGGEST_PUBLISH_LAYOUT = LAYOUT_PREFIX + "suggestPublish"; }