001// -------------------------------------------------------------------------------- 002// Copyright 2002-2025 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.workflow.server.transfer; 018 019import com.echothree.util.server.transfer.BaseTransferCaches; 020import javax.enterprise.context.RequestScoped; 021import javax.inject.Inject; 022 023@RequestScoped 024public class WorkflowTransferCaches 025 extends BaseTransferCaches { 026 027 @Inject 028 WorkflowDescriptionTransferCache workflowDescriptionTransferCache; 029 030 @Inject 031 WorkflowDestinationDescriptionTransferCache workflowDestinationDescriptionTransferCache; 032 033 @Inject 034 WorkflowDestinationSelectorTransferCache workflowDestinationSelectorTransferCache; 035 036 @Inject 037 WorkflowDestinationStepTransferCache workflowDestinationStepTransferCache; 038 039 @Inject 040 WorkflowDestinationTransferCache workflowDestinationTransferCache; 041 042 @Inject 043 WorkflowEntityStatusTransferCache workflowEntityStatusTransferCache; 044 045 @Inject 046 WorkflowEntityTypeTransferCache workflowEntityTypeTransferCache; 047 048 @Inject 049 WorkflowEntranceDescriptionTransferCache workflowEntranceDescriptionTransferCache; 050 051 @Inject 052 WorkflowEntranceSelectorTransferCache workflowEntranceSelectorTransferCache; 053 054 @Inject 055 WorkflowEntranceStepTransferCache workflowEntranceStepTransferCache; 056 057 @Inject 058 WorkflowEntranceTransferCache workflowEntranceTransferCache; 059 060 @Inject 061 WorkflowStepDescriptionTransferCache workflowStepDescriptionTransferCache; 062 063 @Inject 064 WorkflowStepTransferCache workflowStepTransferCache; 065 066 @Inject 067 WorkflowStepTypeTransferCache workflowStepTypeTransferCache; 068 069 @Inject 070 WorkflowTransferCache workflowTransferCache; 071 072 @Inject 073 WorkflowSelectorKindTransferCache workflowSelectorKindTransferCache; 074 075 @Inject 076 WorkflowDestinationPartyTypeTransferCache workflowDestinationPartyTypeTransferCache; 077 078 @Inject 079 WorkflowDestinationSecurityRoleTransferCache workflowDestinationSecurityRoleTransferCache; 080 081 @Inject 082 WorkflowEntrancePartyTypeTransferCache workflowEntrancePartyTypeTransferCache; 083 084 @Inject 085 WorkflowEntranceSecurityRoleTransferCache workflowEntranceSecurityRoleTransferCache; 086 087 /** Creates a new instance of WorkflowTransferCaches */ 088 protected WorkflowTransferCaches() { 089 super(); 090 } 091 092 public WorkflowDescriptionTransferCache getWorkflowDescriptionTransferCache() { 093 return workflowDescriptionTransferCache; 094 } 095 096 public WorkflowDestinationDescriptionTransferCache getWorkflowDestinationDescriptionTransferCache() { 097 return workflowDestinationDescriptionTransferCache; 098 } 099 100 public WorkflowDestinationSelectorTransferCache getWorkflowDestinationSelectorTransferCache() { 101 return workflowDestinationSelectorTransferCache; 102 } 103 104 public WorkflowDestinationStepTransferCache getWorkflowDestinationStepTransferCache() { 105 return workflowDestinationStepTransferCache; 106 } 107 108 public WorkflowDestinationTransferCache getWorkflowDestinationTransferCache() { 109 return workflowDestinationTransferCache; 110 } 111 112 public WorkflowEntityStatusTransferCache getWorkflowEntityStatusTransferCache() { 113 return workflowEntityStatusTransferCache; 114 } 115 116 public WorkflowEntityTypeTransferCache getWorkflowEntityTypeTransferCache() { 117 return workflowEntityTypeTransferCache; 118 } 119 120 public WorkflowEntranceDescriptionTransferCache getWorkflowEntranceDescriptionTransferCache() { 121 return workflowEntranceDescriptionTransferCache; 122 } 123 124 public WorkflowEntranceSelectorTransferCache getWorkflowEntranceSelectorTransferCache() { 125 return workflowEntranceSelectorTransferCache; 126 } 127 128 public WorkflowEntranceStepTransferCache getWorkflowEntranceStepTransferCache() { 129 return workflowEntranceStepTransferCache; 130 } 131 132 public WorkflowEntranceTransferCache getWorkflowEntranceTransferCache() { 133 return workflowEntranceTransferCache; 134 } 135 136 public WorkflowStepDescriptionTransferCache getWorkflowStepDescriptionTransferCache() { 137 return workflowStepDescriptionTransferCache; 138 } 139 140 public WorkflowStepTransferCache getWorkflowStepTransferCache() { 141 return workflowStepTransferCache; 142 } 143 144 public WorkflowStepTypeTransferCache getWorkflowStepTypeTransferCache() { 145 return workflowStepTypeTransferCache; 146 } 147 148 public WorkflowTransferCache getWorkflowTransferCache() { 149 return workflowTransferCache; 150 } 151 152 public WorkflowSelectorKindTransferCache getWorkflowSelectorKindTransferCache() { 153 return workflowSelectorKindTransferCache; 154 } 155 156 public WorkflowDestinationPartyTypeTransferCache getWorkflowDestinationPartyTypeTransferCache() { 157 return workflowDestinationPartyTypeTransferCache; 158 } 159 160 public WorkflowDestinationSecurityRoleTransferCache getWorkflowDestinationSecurityRoleTransferCache() { 161 return workflowDestinationSecurityRoleTransferCache; 162 } 163 164 public WorkflowEntrancePartyTypeTransferCache getWorkflowEntrancePartyTypeTransferCache() { 165 return workflowEntrancePartyTypeTransferCache; 166 } 167 168 public WorkflowEntranceSecurityRoleTransferCache getWorkflowEntranceSecurityRoleTransferCache() { 169 return workflowEntranceSecurityRoleTransferCache; 170 } 171 172}