01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/osp/tags/sakai_2-4-1/wizard/api/src/java/org/theospi/portfolio/wizard/WizardFunctionConstants.java $
03: * $Id: WizardFunctionConstants.java 18535 2006-11-29 18:32:53Z 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.wizard;
21:
22: /**
23: * @author chmaurer
24: */
25: public interface WizardFunctionConstants {
26:
27: public final static String COMMENT_TYPE = "comment";
28: public final static String REFLECTION_TYPE = "reflection";
29: public final static String EVALUATION_TYPE = "evaluation";
30:
31: public final static String WIZARD_PREFIX = "osp.wizard.";
32: public final static String CREATE_WIZARD = WIZARD_PREFIX + "create";
33: public final static String EDIT_WIZARD = WIZARD_PREFIX + "edit";
34: public final static String DELETE_WIZARD = WIZARD_PREFIX + "delete";
35: public final static String PUBLISH_WIZARD = WIZARD_PREFIX
36: + "publish";
37: public static final String REVIEW_WIZARD = WIZARD_PREFIX + "review";
38: public static final String EVALUATE_WIZARD = WIZARD_PREFIX
39: + "evaluate";
40:
41: /** This is when the client user fills in a completed wizard */
42: public static final String VIEW_WIZARD = WIZARD_PREFIX + "view";
43:
44: /** The operate permission is a campasite permission of complete (view), review, evaluate.
45: * it has no hooks into the interface.
46: */
47: public static final String OPERATE_WIZARD = WIZARD_PREFIX
48: + "operate";
49:
50: public static final String COPY_WIZARD = WIZARD_PREFIX + "copy";
51: public static final String EXPORT_WIZARD = WIZARD_PREFIX + "export";
52:
53: public static final String VIEW_WIZARDPAGE_GUIDANCE = WIZARD_PREFIX
54: + "viewWizPageGuidance";
55: public static final String EDIT_WIZARDPAGE_GUIDANCE = WIZARD_PREFIX
56: + "editWizPageGuidance";
57:
58: public static final String EVALUATE_SPECIFIC_WIZARD = WIZARD_PREFIX
59: + "evaluateSpecificWizard";
60: public static final String EVALUATE_SPECIFIC_WIZARDPAGE = WIZARD_PREFIX
61: + "evaluateSpecificWizardPage";
62:
63: public final static String WIZARD_TYPE_SEQUENTIAL = "org.theospi.portfolio.wizard.model.Wizard.sequential";
64: public final static String WIZARD_TYPE_HIERARCHICAL = "org.theospi.portfolio.wizard.model.Wizard.hierarchical";
65: }
|