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.offer.server.transfer;
018
019import com.echothree.util.server.transfer.BaseTransferCaches;
020import javax.enterprise.context.RequestScoped;
021import javax.inject.Inject;
022
023@RequestScoped
024public class OfferTransferCaches
025        extends BaseTransferCaches {
026    
027    @Inject
028    OfferTransferCache offerTransferCache;
029    
030    @Inject
031    OfferDescriptionTransferCache offerDescriptionTransferCache;
032    
033    @Inject
034    OfferUseTransferCache offerUseTransferCache;
035    
036    @Inject
037    SourceTransferCache sourceTransferCache;
038    
039    @Inject
040    OfferItemPriceTransferCache offerItemPriceTransferCache;
041    
042    @Inject
043    OfferItemTransferCache offerItemTransferCache;
044    
045    @Inject
046    OfferNameElementDescriptionTransferCache offerNameElementDescriptionTransferCache;
047    
048    @Inject
049    OfferNameElementTransferCache offerNameElementTransferCache;
050    
051    @Inject
052    UseNameElementDescriptionTransferCache useNameElementDescriptionTransferCache;
053    
054    @Inject
055    UseNameElementTransferCache useNameElementTransferCache;
056    
057    @Inject
058    UseDescriptionTransferCache useDescriptionTransferCache;
059    
060    @Inject
061    UseTransferCache useTransferCache;
062    
063    @Inject
064    UseTypeDescriptionTransferCache useTypeDescriptionTransferCache;
065    
066    @Inject
067    UseTypeTransferCache useTypeTransferCache;
068    
069    @Inject
070    OfferCustomerTypeTransferCache offerCustomerTypeTransferCache;
071    
072    @Inject
073    OfferChainTypeTransferCache offerChainTypeTransferCache;
074
075    /** Creates a new instance of OfferTransferCaches */
076    protected OfferTransferCaches() {
077        super();
078    }
079    
080    public OfferTransferCache getOfferTransferCache() {
081        return offerTransferCache;
082    }
083    
084    public OfferDescriptionTransferCache getOfferDescriptionTransferCache() {
085        return offerDescriptionTransferCache;
086    }
087    
088    public OfferUseTransferCache getOfferUseTransferCache() {
089        return offerUseTransferCache;
090    }
091    
092    public SourceTransferCache getSourceTransferCache() {
093        return sourceTransferCache;
094    }
095    
096    public OfferItemPriceTransferCache getOfferItemPriceTransferCache() {
097        return offerItemPriceTransferCache;
098    }
099    
100    public OfferItemTransferCache getOfferItemTransferCache() {
101        return offerItemTransferCache;
102    }
103    
104    public OfferNameElementDescriptionTransferCache getOfferNameElementDescriptionTransferCache() {
105        return offerNameElementDescriptionTransferCache;
106    }
107    
108    public OfferNameElementTransferCache getOfferNameElementTransferCache() {
109        return offerNameElementTransferCache;
110    }
111    
112    public UseNameElementDescriptionTransferCache getUseNameElementDescriptionTransferCache() {
113        return useNameElementDescriptionTransferCache;
114    }
115    
116    public UseNameElementTransferCache getUseNameElementTransferCache() {
117        return useNameElementTransferCache;
118    }
119    
120    public UseDescriptionTransferCache getUseDescriptionTransferCache() {
121        return useDescriptionTransferCache;
122    }
123    
124    public UseTransferCache getUseTransferCache() {
125        return useTransferCache;
126    }
127    
128    public UseTypeDescriptionTransferCache getUseTypeDescriptionTransferCache() {
129        return useTypeDescriptionTransferCache;
130    }
131    
132    public UseTypeTransferCache getUseTypeTransferCache() {
133        return useTypeTransferCache;
134    }
135    
136    public OfferCustomerTypeTransferCache getOfferCustomerTypeTransferCache() {
137        return offerCustomerTypeTransferCache;
138    }
139    
140    public OfferChainTypeTransferCache getOfferChainTypeTransferCache() {
141        return offerChainTypeTransferCache;
142    }
143    
144}