001// --------------------------------------------------------------------------------
002// Copyright 2002-2024 Echo Three, LLC
003//
004// Licensed under the Apache License, Version 2.0 (the "License");
005// you may not use this file except in compliance with the License.
006// You may obtain a copy of the License at
007//
008//     http://www.apache.org/licenses/LICENSE-2.0
009//
010// Unless required by applicable law or agreed to in writing, software
011// distributed under the License is distributed on an "AS IS" BASIS,
012// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013// See the License for the specific language governing permissions and
014// limitations under the License.
015// --------------------------------------------------------------------------------
016
017package com.echothree.model.control.employee.common.workflow;
018
019public interface LeaveStatusConstants {
020
021    String Workflow_LEAVE_STATUS = "LEAVE_STATUS";
022
023    String WorkflowStep_SUBMITTED = "SUBMITTED";
024    String WorkflowStep_APPROVED = "APPROVED";
025    String WorkflowStep_DENIED = "DENIED";
026    String WorkflowStep_REVISED = "REVISED";
027    String WorkflowStep_TAKEN = "TAKEN";
028    String WorkflowStep_NOT_TAKEN = "NOT_TAKEN";
029
030    String WorkflowEntrance_NEW_SUBMITTED = "NEW_SUBMITTED";
031    String WorkflowEntrance_NEW_APPROVED = "NEW_APPROVED";
032
033    String WorkflowDestination_SUBMITTED_TO_APPROVED = "SUBMITTED_TO_APPROVED";
034    String WorkflowDestination_SUBMITTED_TO_DENIED = "SUBMITTED_TO_DENIED";
035    String WorkflowDestination_APPROVED_TO_REVISED = "APPROVED_TO_REVISED";
036    String WorkflowDestination_APPROVED_TO_TAKEN = "APPROVED_TO_TAKEN";
037    String WorkflowDestination_APPROVED_TO_NOT_TAKEN = "APPROVED_TO_NOT_TAKEN";
038    String WorkflowDestination_DENIED_TO_REVISED = "DENIED_TO_REVISED";
039    String WorkflowDestination_REVISED_TO_APPROVED = "REVISED_TO_APPROVED";
040    String WorkflowDestination_REVISED_TO_DENIED = "REVISED_TO_DENIED";
041
042}