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.customer.common.workflow;
018
019public interface CustomerCreditStatusConstants {
020    
021    String Workflow_CUSTOMER_CREDIT_STATUS = "CUSTOMER_CREDIT_STATUS";
022    
023    String WorkflowStep_APPROVED         = "APPROVED";
024    String WorkflowStep_CUT_OFF          = "CUT_OFF";
025    String WorkflowStep_NOT_APPROVED     = "NOT_APPROVED";
026    String WorkflowStep_OVER             = "OVER";
027    String WorkflowStep_OVER_POTENTIAL   = "OVER_POTENTIAL";
028    String WorkflowStep_WAIT_APPROVAL    = "WAIT_APPROVAL";
029    String WorkflowStep_WAIT_INFORMATION = "WAIT_INFORMATION";
030    
031    String WorkflowEntrance_APPROVED         = "APPROVED";
032    String WorkflowEntrance_WAITING_APPROVAL = "WAITING_APPROVAL";
033    
034    String WorkflowDestination_APPROVED_TO_CUT_OFF                = "APPROVED_TO_CUT_OFF";
035    String WorkflowDestination_CUT_OFF_TO_WAIT_APPROVAL           = "CUT_OFF_TO_WAIT_APPROVAL";
036    String WorkflowDestination_OVER_POTENTIAL_TO_APPROVED         = "OVER_POTENTIAL_TO_APPROVED";
037    String WorkflowDestination_OVER_POTENTIAL_TO_WAIT_INFORMATION = "OVER_POTENTIAL_TO_WAIT_INFORMATION";
038    String WorkflowDestination_OVER_TO_APPROVED                   = "OVER_TO_APPROVED";
039    String WorkflowDestination_OVER_TO_WAIT_INFORMATION           = "OVER_TO_WAIT_INFORMATION";
040    String WorkflowDestination_WAIT_APPROVAL_TO_APPROVED          = "WAIT_APPROVAL_TO_APPROVED";
041    String WorkflowDestination_WAIT_APPROVAL_TO_NOT_APPROVED      = "WAIT_APPROVAL_TO_NOT_APPROVED";
042    String WorkflowDestination_WAIT_APPROVAL_TO_WAIT_INFORMATION  = "WAIT_APPROVAL_TO_WAIT_INFORMATION";
043    String WorkflowDestination_WAIT_INFORMATION_TO_APPROVED       = "WAIT_INFORMATION_TO_APPROVED";
044    String WorkflowDestination_WAIT_INFORMATION_TO_NOT_APPROVED   = "WAIT_INFORMATION_TO_NOT_APPROVED";
045    
046}