01: /**********************************************************************************
02: * $URL:https://source.sakaiproject.org/svn/osp/trunk/presentation/api/src/java/org/theospi/portfolio/presentation/PresentationFunctionConstants.java $
03: * $Id:PresentationFunctionConstants.java 9134 2006-05-08 20:28:42Z chmaurer@iupui.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2005, 2006 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the "License");
09: * you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/package org.theospi.portfolio.presentation;
21:
22: public class PresentationFunctionConstants {
23:
24: public final static String PRES_TOOL_ID = "osp.presentation";
25:
26: public final static String TEMPLATE_PREFIX = "osp.presentation.template.";
27: public final static String DELETE_TEMPLATE = TEMPLATE_PREFIX
28: + "delete";
29: public final static String EDIT_TEMPLATE = TEMPLATE_PREFIX + "edit";
30: public final static String COPY_TEMPLATE = TEMPLATE_PREFIX + "copy";
31: public final static String PUBLISH_TEMPLATE = TEMPLATE_PREFIX
32: + "publish";
33: public final static String CREATE_TEMPLATE = TEMPLATE_PREFIX
34: + "create";
35: public final static String EXPORT_TEMPLATE = TEMPLATE_PREFIX
36: + "export";
37:
38: public final static String PRESENTATION_PREFIX = "osp.presentation.";
39: public final static String DELETE_PRESENTATION = PRESENTATION_PREFIX
40: + "delete";
41: public final static String EDIT_PRESENTATION = PRESENTATION_PREFIX
42: + "edit";
43: public final static String CREATE_PRESENTATION = PRESENTATION_PREFIX
44: + "create";
45: public final static String VIEW_PRESENTATION = PRESENTATION_PREFIX
46: + "view";
47: public final static String COMMENT_PRESENTATION = PRESENTATION_PREFIX
48: + "comment";
49: public final static String HIDE_PRESENTATION = PRESENTATION_PREFIX
50: + "hide";
51:
52: public final static String LAYOUT_PREFIX = "osp.presentation.layout.";
53: public final static String DELETE_LAYOUT = LAYOUT_PREFIX + "delete";
54: public final static String EDIT_LAYOUT = LAYOUT_PREFIX + "edit";
55: public final static String COPY_LAYOUT = LAYOUT_PREFIX + "copy";
56: public final static String PUBLISH_LAYOUT = LAYOUT_PREFIX
57: + "publish";
58: public final static String CREATE_LAYOUT = LAYOUT_PREFIX + "create";
59: public final static String SUGGEST_PUBLISH_LAYOUT = LAYOUT_PREFIX
60: + "suggestPublish";
61:
62: }
|