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.financial.server.transfer;
018
019import com.echothree.util.server.transfer.BaseTransferCaches;
020import javax.enterprise.context.RequestScoped;
021import javax.inject.Inject;
022
023@RequestScoped
024public class FinancialTransferCaches
025        extends BaseTransferCaches {
026    
027    @Inject
028    FinancialAccountRoleTypeTransferCache financialAccountRoleTypeTransferCache;
029    
030    @Inject
031    FinancialAccountTypeTransferCache financialAccountTypeTransferCache;
032    
033    @Inject
034    FinancialAccountTypeDescriptionTransferCache financialAccountTypeDescriptionTransferCache;
035    
036    @Inject
037    FinancialAccountTransactionTypeTransferCache financialAccountTransactionTypeTransferCache;
038    
039    @Inject
040    FinancialAccountTransactionTypeDescriptionTransferCache financialAccountTransactionTypeDescriptionTransferCache;
041    
042    @Inject
043    FinancialAccountAliasTypeTransferCache financialAccountAliasTypeTransferCache;
044    
045    @Inject
046    FinancialAccountAliasTypeDescriptionTransferCache financialAccountAliasTypeDescriptionTransferCache;
047    
048    @Inject
049    FinancialAccountRoleTransferCache financialAccountRoleTransferCache;
050    
051    @Inject
052    FinancialAccountTransferCache financialAccountTransferCache;
053    
054    @Inject
055    FinancialAccountAliasTransferCache financialAccountAliasTransferCache;
056    
057    @Inject
058    FinancialAccountTransactionTransferCache financialAccountTransactionTransferCache;
059
060    /** Creates a new instance of FinancialTransferCaches */
061    protected FinancialTransferCaches() {
062        super();
063    }
064    
065    public FinancialAccountRoleTypeTransferCache getFinancialAccountRoleTypeTransferCache() {
066        return financialAccountRoleTypeTransferCache;
067    }
068    
069    public FinancialAccountTypeTransferCache getFinancialAccountTypeTransferCache() {
070        return financialAccountTypeTransferCache;
071    }
072    
073    public FinancialAccountTypeDescriptionTransferCache getFinancialAccountTypeDescriptionTransferCache() {
074        return financialAccountTypeDescriptionTransferCache;
075    }
076    
077    public FinancialAccountTransactionTypeTransferCache getFinancialAccountTransactionTypeTransferCache() {
078        return financialAccountTransactionTypeTransferCache;
079    }
080    
081    public FinancialAccountTransactionTypeDescriptionTransferCache getFinancialAccountTransactionTypeDescriptionTransferCache() {
082        return financialAccountTransactionTypeDescriptionTransferCache;
083    }
084    
085    public FinancialAccountAliasTypeTransferCache getFinancialAccountAliasTypeTransferCache() {
086        return financialAccountAliasTypeTransferCache;
087    }
088    
089    public FinancialAccountAliasTypeDescriptionTransferCache getFinancialAccountAliasTypeDescriptionTransferCache() {
090        return financialAccountAliasTypeDescriptionTransferCache;
091    }
092    
093    public FinancialAccountRoleTransferCache getFinancialAccountRoleTransferCache() {
094        return financialAccountRoleTransferCache;
095    }
096    
097    public FinancialAccountTransferCache getFinancialAccountTransferCache() {
098        return financialAccountTransferCache;
099    }
100    
101    public FinancialAccountAliasTransferCache getFinancialAccountAliasTransferCache() {
102        return financialAccountAliasTransferCache;
103    }
104    
105    public FinancialAccountTransactionTransferCache getFinancialAccountTransactionTransferCache() {
106        return financialAccountTransactionTransferCache;
107    }
108    
109}