001/*
002 * (C) Copyright 2011 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     ldoguin
016 */
017package org.nuxeo.ecm.platform.routing.dm.api;
018
019/**
020 * @deprecated since 5.9.2 - Use only routes of type 'graph'
021 */
022@Deprecated
023public class RoutingTaskConstants {
024
025    public static final String TASK_STEP_FACET_NAME = "TaskStep";
026
027    public static final String TASK_STEP_ACTORS_PROPERTY_NAME = "tkst:actors";
028
029    public static final String TASK_STEP_DUE_DATE_PROPERTY_NAME = "tkst:dueDate";
030
031    public static final String TASK_STEP_AUTOMATIC_VALIDATION_PROPERTY_NAME = "tkst:automaticValidation";
032
033    public static final String TASK_STEP_DIRECTIVE_PROPERTY_NAME = "tkst:directive";
034
035    public static final String TASK_STEP_COMMENTS_PROPERTY_NAME = "tkst:comments";
036
037    public static final String ROUTING_TASK_ACTORS_KEY = "document.routing.task.actors";
038
039    public enum EvaluationOperators {
040        equal, not_equal, less_than, less_or_equal_than, greater_than, greater_or_equal_than
041    }
042
043}