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.printer.server.transfer; 018 019import com.echothree.util.server.transfer.BaseTransferCaches; 020import javax.enterprise.context.RequestScoped; 021import javax.inject.Inject; 022 023@RequestScoped 024public class PrinterTransferCaches 025 extends BaseTransferCaches { 026 027 @Inject 028 PrinterGroupTransferCache printerGroupTransferCache; 029 030 @Inject 031 PrinterGroupDescriptionTransferCache printerGroupDescriptionTransferCache; 032 033 @Inject 034 PrinterGroupUseTypeTransferCache printerGroupUseTypeTransferCache; 035 036 @Inject 037 PrinterGroupUseTypeDescriptionTransferCache printerGroupUseTypeDescriptionTransferCache; 038 039 @Inject 040 PartyPrinterGroupUseTransferCache partyPrinterGroupUseTransferCache; 041 042 @Inject 043 PrinterTransferCache printerTransferCache; 044 045 @Inject 046 PrinterDescriptionTransferCache printerDescriptionTransferCache; 047 048 @Inject 049 PrinterGroupJobTransferCache printerGroupJobTransferCache; 050 051 /** Creates a new instance of PrinterTransferCaches */ 052 protected PrinterTransferCaches() { 053 super(); 054 } 055 056 public PrinterGroupTransferCache getPrinterGroupTransferCache() { 057 return printerGroupTransferCache; 058 } 059 060 public PrinterGroupDescriptionTransferCache getPrinterGroupDescriptionTransferCache() { 061 return printerGroupDescriptionTransferCache; 062 } 063 064 public PrinterGroupUseTypeTransferCache getPrinterGroupUseTypeTransferCache() { 065 return printerGroupUseTypeTransferCache; 066 } 067 068 public PrinterGroupUseTypeDescriptionTransferCache getPrinterGroupUseTypeDescriptionTransferCache() { 069 return printerGroupUseTypeDescriptionTransferCache; 070 } 071 072 public PartyPrinterGroupUseTransferCache getPartyPrinterGroupUseTransferCache() { 073 return partyPrinterGroupUseTransferCache; 074 } 075 076 public PrinterTransferCache getPrinterTransferCache() { 077 return printerTransferCache; 078 } 079 080 public PrinterDescriptionTransferCache getPrinterDescriptionTransferCache() { 081 return printerDescriptionTransferCache; 082 } 083 084 public PrinterGroupJobTransferCache getPrinterGroupJobTransferCache() { 085 return printerGroupJobTransferCache; 086 } 087 088}