mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18931 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
72 lines
3.4 KiB
Java
72 lines
3.4 KiB
Java
package org.alfresco.repo.invitation;
|
|
|
|
import org.alfresco.service.namespace.NamespaceService;
|
|
import org.alfresco.service.namespace.QName;
|
|
|
|
/*
|
|
* Copyright (C) 2005-2010 Alfresco Software Limited.
|
|
*
|
|
* This file is part of Alfresco
|
|
*
|
|
* Alfresco 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Alfresco 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.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* Workflow Model for a Moderated Invitation
|
|
*/
|
|
public interface WorkflowModelModeratedInvitation
|
|
{
|
|
|
|
// namespace
|
|
public static final String NAMESPACE_URI = "http://www.alfresco.org/model/workflow/invite/moderated/1.0";
|
|
|
|
// process name
|
|
public static final QName WF_PROCESS_INVITATION_MODERATED = QName.createQName(NAMESPACE_URI, "invitation-moderated");
|
|
|
|
// workflow definition name
|
|
public static final String WORKFLOW_DEFINITION_NAME = "jbpm$imwf:invitation-moderated";
|
|
|
|
// tasks
|
|
public static final QName WF_START_TASK = QName.createQName(NAMESPACE_URI, "moderatedInvitationSubmitTask");
|
|
public static final QName WF_REVIEW_TASK = QName.createQName(NAMESPACE_URI,"moderatedInvitationReviewTask");
|
|
|
|
// associations
|
|
static final QName ASSOC_GROUP_ASSIGNEE = QName.createQName(NamespaceService.BPM_MODEL_1_0_URI, "groupAssignee");
|
|
|
|
// transition names
|
|
public static final String WF_TRANSITION_REVIEW = "review";
|
|
public static final String WF_TRANSITION_APPROVE = "approve";
|
|
public static final String WF_TRANSITION_REJECT = "reject";
|
|
public static final String WF_TRANSITION_CANCEL = "cancel";
|
|
public static final String WF_TRANSITION_END = "end";
|
|
|
|
// workflow properties
|
|
public static final QName WF_PROP_INVITEE_USER_NAME = QName.createQName(NAMESPACE_URI, "inviteeUserName");
|
|
public static final QName WF_PROP_INVITEE_ROLE = QName.createQName(NAMESPACE_URI, "inviteeRole");
|
|
public static final QName WF_PROP_INVITEE_COMMENTS = QName.createQName(NAMESPACE_URI, "inviteeComments");
|
|
public static final QName WF_PROP_RESOURCE_NAME = QName.createQName(NAMESPACE_URI, "resourceName");
|
|
public static final QName WF_PROP_RESOURCE_TYPE= QName.createQName(NAMESPACE_URI, "resourceType");
|
|
public static final QName WF_PROP_REVIEW_COMMENTS= QName.createQName(NAMESPACE_URI, "reviewComments");
|
|
public static final QName WF_PROP_REVIEWER= QName.createQName(NAMESPACE_URI, "reviewer");
|
|
|
|
// workflow execution context variable names
|
|
public static final String wfVarInviteeUserName = "imwf_inviteeUserName";
|
|
public static final String wfVarInviteeRole = "imwf_inviteeRole";
|
|
public static final String wfVarWorkflowInstanceId = "workflowinstanceid";
|
|
public static final String wfVarResourceName = "imwf_resourceName";
|
|
public static final String wfVarResourceType = "imwf_resourceType";
|
|
public static final String wfVarReviewer = "imwf_reviewer";
|
|
public static final String wfVarReviewComments = "imwf_reviewComments";
|
|
}
|