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 CustomerCreditCardContactMechanismConstants {
020    
021    String Workflow_CUSTOMER_CREDIT_CARD_CONTACT_MECHANISM = "CUSTOMER_CREDIT_CARD_CONTACT_MECHANISM";
022    
023    String WorkflowStep_AVS_SECURITY_CODE_TEST = "AVS_SECURITY_CODE_TEST";
024    String WorkflowStep_SECURITY_CODE_TEST = "SECURITY_CODE_TEST";
025    String WorkflowStep_VERIFICATION = "VERIFICATION";
026    String WorkflowStep_FRAUD_REVIEW = "FRAUD_REVIEW";
027    String WorkflowStep_FRAUDULENT = "FRAUDULENT";
028    String WorkflowStep_VERIFIED = "VERIFIED";
029    
030    String WorkflowDestination_AVS_SECURITY_CODE_TEST_TO_VERIFIED = "AVS_SECURITY_CODE_TEST_TO_VERIFIED";
031    String WorkflowDestination_AVS_SECURITY_CODE_TEST_TO_FRAUD_REVIEW = "AVS_SECURITY_CODE_TEST_TO_FRAUD_REVIEW";
032    String WorkflowDestination_SECURITY_CODE_TEST_TO_VERIFIED = "SECURITY_CODE_TEST_TO_VERIFIED";
033    String WorkflowDestination_SECURITY_CODE_TEST_TO_FRAUD_REVIEW = "SECURITY_CODE_TEST_TO_FRAUD_REVIEW";
034    String WorkflowDestination_FRAUD_REVIEW_TO_FRAUDULENT = "FRAUD_REVIEW_TO_FRAUDULENT";
035    String WorkflowDestination_FRAUDULENT_TO_FRAUD_REVIEW = "FRAUDULENT_TO_FRAUD_REVIEW";
036    String WorkflowDestination_FRAUD_REVIEW_TO_VERIFICATION = "FRAUD_REVIEW_TO_VERIFICATION";
037    String WorkflowDestination_VERIFICATION_TO_FRAUD_REVIEW = "VERIFICATION_TO_FRAUD_REVIEW";
038    String WorkflowDestination_FRAUD_REVIEW_TO_AVS_SECURITY_CODE_TEST = "FRAUD_REVIEW_TO_AVS_SECURITY_CODE_TEST";
039    String WorkflowDestination_FRAUD_REVIEW_TO_SECURITY_CODE_TEST = "FRAUD_REVIEW_TO_SECURITY_CODE_TEST";
040    
041    String WorkflowEntrance_NEW_AVS_SECURITY_CODE_TEST = "NEW_AVS_SECURITY_CODE_TEST";
042    String WorkflowEntrance_NEW_SECURITY_CODE_TEST = "NEW_SECURITY_CODE_TEST";
043    String WorkflowEntrance_NEW_VERIFIED = "NEW_VERIFIED";
044    
045}