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.content.server.transfer;
018
019import com.echothree.util.server.transfer.BaseTransferCaches;
020import javax.enterprise.context.RequestScoped;
021import javax.inject.Inject;
022
023@RequestScoped
024public class ContentTransferCaches
025        extends BaseTransferCaches {
026    
027    @Inject
028    ContentCatalogTransferCache contentCatalogTransferCache;
029    
030    @Inject
031    ContentCatalogDescriptionTransferCache contentCatalogDescriptionTransferCache;
032    
033    @Inject
034    ContentCategoryTransferCache contentCategoryTransferCache;
035    
036    @Inject
037    ContentCategoryDescriptionTransferCache contentCategoryDescriptionTransferCache;
038    
039    @Inject
040    ContentCollectionTransferCache contentCollectionTransferCache;
041    
042    @Inject
043    ContentCollectionDescriptionTransferCache contentCollectionDescriptionTransferCache;
044    
045    @Inject
046    ContentPageAreaTransferCache contentPageAreaTransferCache;
047    
048    @Inject
049    ContentPageAreaTypeTransferCache contentPageAreaTypeTransferCache;
050    
051    @Inject
052    ContentPageDescriptionTransferCache contentPageDescriptionTransferCache;
053    
054    @Inject
055    ContentPageLayoutAreaTransferCache contentPageLayoutAreaTransferCache;
056    
057    @Inject
058    ContentPageLayoutTransferCache contentPageLayoutTransferCache;
059    
060    @Inject
061    ContentPageLayoutDescriptionTransferCache contentPageLayoutDescriptionTransferCache;
062    
063    @Inject
064    ContentPageTransferCache contentPageTransferCache;
065    
066    @Inject
067    ContentSectionTransferCache contentSectionTransferCache;
068    
069    @Inject
070    ContentSectionDescriptionTransferCache contentSectionDescriptionTransferCache;
071    
072    @Inject
073    ContentWebAddressTransferCache contentWebAddressTransferCache;
074    
075    @Inject
076    ContentWebAddressDescriptionTransferCache contentWebAddressDescriptionTransferCache;
077    
078    @Inject
079    ContentForumTransferCache contentForumTransferCache;
080    
081    @Inject
082    ContentCategoryItemTransferCache contentCategoryItemTransferCache;
083    
084    @Inject
085    ContentCatalogItemTransferCache contentCatalogItemTransferCache;
086
087    /** Creates a new instance of ContentTransferCaches */
088    protected ContentTransferCaches() {
089        super();
090    }
091    
092    public ContentCatalogTransferCache getContentCatalogTransferCache() {
093        return contentCatalogTransferCache;
094    }
095    
096    public ContentCatalogDescriptionTransferCache getContentCatalogDescriptionTransferCache() {
097        return contentCatalogDescriptionTransferCache;
098    }
099    
100    public ContentCategoryTransferCache getContentCategoryTransferCache() {
101        return contentCategoryTransferCache;
102    }
103    
104    public ContentCategoryDescriptionTransferCache getContentCategoryDescriptionTransferCache() {
105        return contentCategoryDescriptionTransferCache;
106    }
107    
108    public ContentCollectionTransferCache getContentCollectionTransferCache() {
109        return contentCollectionTransferCache;
110    }
111    
112    public ContentCollectionDescriptionTransferCache getContentCollectionDescriptionTransferCache() {
113        return contentCollectionDescriptionTransferCache;
114    }
115    
116    public ContentPageLayoutTransferCache getContentPageLayoutTransferCache() {
117        return contentPageLayoutTransferCache;
118    }
119    
120    public ContentPageLayoutDescriptionTransferCache getContentPageLayoutDescriptionTransferCache() {
121        return contentPageLayoutDescriptionTransferCache;
122    }
123    
124    public ContentPageTransferCache getContentPageTransferCache() {
125        return contentPageTransferCache;
126    }
127    
128    public ContentPageDescriptionTransferCache getContentPageDescriptionTransferCache() {
129        return contentPageDescriptionTransferCache;
130    }
131    
132    public ContentSectionTransferCache getContentSectionTransferCache() {
133        return contentSectionTransferCache;
134    }
135    
136    public ContentSectionDescriptionTransferCache getContentSectionDescriptionTransferCache() {
137        return contentSectionDescriptionTransferCache;
138    }
139    
140    public ContentWebAddressTransferCache getContentWebAddressTransferCache() {
141        return contentWebAddressTransferCache;
142    }
143    
144    public ContentWebAddressDescriptionTransferCache getContentWebAddressDescriptionTransferCache() {
145        return contentWebAddressDescriptionTransferCache;
146    }
147    
148    public ContentPageAreaTransferCache getContentPageAreaTransferCache() {
149        return contentPageAreaTransferCache;
150    }
151    
152    public ContentPageAreaTypeTransferCache getContentPageAreaTypeTransferCache() {
153        return contentPageAreaTypeTransferCache;
154    }
155    
156    public ContentPageLayoutAreaTransferCache getContentPageLayoutAreaTransferCache() {
157        return contentPageLayoutAreaTransferCache;
158    }
159    
160    public ContentForumTransferCache getContentForumTransferCache() {
161        return contentForumTransferCache;
162    }
163    
164    public ContentCategoryItemTransferCache getContentCategoryItemTransferCache() {
165        return contentCategoryItemTransferCache;
166    }
167    
168    public ContentCatalogItemTransferCache getContentCatalogItemTransferCache() {
169        return contentCatalogItemTransferCache;
170    }
171    
172}