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.printer.common.workflow;
018
019public interface PrinterGroupJobStatusConstants {
020    
021    String Workflow_PRINTER_GROUP_JOB_STATUS = "PRINTER_GROUP_JOB_STATUS";
022    
023    String WorkflowStep_QUEUED  = "QUEUED";
024    String WorkflowStep_PRINTED = "PRINTED";
025    String WorkflowStep_ERRORED = "ERRORED";
026    String WorkflowStep_DELETED = "DELETED";
027    
028    String WorkflowEntrance_NEW_PRINTER_GROUP_JOB = "NEW_PRINTER_GROUP_JOB";
029    
030    String WorkflowDestination_QUEUED_TO_PRINTED = "QUEUED_TO_PRINTED";
031    String WorkflowDestination_QUEUED_TO_ERRORED = "QUEUED_TO_ERRORED";
032    String WorkflowDestination_QUEUED_TO_DELETED = "QUEUED_TO_DELETED";
033    String WorkflowDestination_PRINTED_TO_QUEUED = "PRINTED_TO_QUEUED";
034    String WorkflowDestination_PRINTED_TO_DELETED = "PRINTED_TO_DELETED";
035    String WorkflowDestination_ERRORED_TO_QUEUED = "ERRORED_TO_QUEUED";
036    String WorkflowDestination_ERRORED_TO_DELETED = "ERRORED_TO_DELETED";
037    String WorkflowDestination_DELETED_TO_QUEUED = "DELETED_TO_QUEUED";
038    
039}