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.contact.server.transfer;
018
019import com.echothree.util.server.transfer.BaseTransferCaches;
020import javax.enterprise.context.RequestScoped;
021import javax.inject.Inject;
022
023@RequestScoped
024public class ContactTransferCaches
025        extends BaseTransferCaches {
026    
027    @Inject
028    PostalAddressFormatTransferCache postalAddressFormatTransferCache;
029    
030    @Inject
031    PostalAddressElementTypeTransferCache postalAddressElementTypeTransferCache;
032    
033    @Inject
034    ContactMechanismAliasTypeTransferCache contactMechanismAliasTypeTransferCache;
035    
036    @Inject
037    ContactMechanismAliasTypeDescriptionTransferCache contactMechanismAliasTypeDescriptionTransferCache;
038    
039    @Inject
040    ContactMechanismPurposeTransferCache contactMechanismPurposeTransferCache;
041    
042    @Inject
043    ContactMechanismTypeTransferCache contactMechanismTypeTransferCache;
044    
045    @Inject
046    ContactMechanismTransferCache contactMechanismTransferCache;
047    
048    @Inject
049    ContactEmailAddressTransferCache contactEmailAddressTransferCache;
050    
051    @Inject
052    ContactPostalAddressTransferCache contactPostalAddressTransferCache;
053    
054    @Inject
055    ContactTelephoneTransferCache contactTelephoneTransferCache;
056    
057    @Inject
058    PostalAddressFormatDescriptionTransferCache postalAddressFormatDescriptionTransferCache;
059    
060    @Inject
061    PostalAddressLineTransferCache postalAddressLineTransferCache;
062    
063    @Inject
064    PostalAddressLineElementTransferCache postalAddressLineElementTransferCache;
065    
066    @Inject
067    ContactWebAddressTransferCache contactWebAddressTransferCache;
068    
069    @Inject
070    ContactMechanismAliasTransferCache contactMechanismAliasTransferCache;
071    
072    @Inject
073    PartyContactMechanismAliasTransferCache partyContactMechanismAliasTransferCache;
074    
075    @Inject
076    PartyContactMechanismPurposeTransferCache partyContactMechanismPurposeTransferCache;
077    
078    @Inject
079    PartyContactMechanismRelationshipTransferCache partyContactMechanismRelationshipTransferCache;
080    
081    @Inject
082    PartyContactMechanismTransferCache partyContactMechanismTransferCache;
083
084    @Inject
085    ContactInet4AddressTransferCache contactInet4AddressTransferCache;
086    
087    /** Creates a new instance of ContactTransferCaches */
088    protected ContactTransferCaches() {
089        super();
090    }
091    
092    public PostalAddressFormatTransferCache getPostalAddressFormatTransferCache() {
093        return postalAddressFormatTransferCache;
094    }
095    
096    public PostalAddressElementTypeTransferCache getPostalAddressElementTypeTransferCache() {
097        return postalAddressElementTypeTransferCache;
098    }
099    
100    public ContactMechanismAliasTypeTransferCache getContactMechanismAliasTypeTransferCache() {
101        return contactMechanismAliasTypeTransferCache;
102    }
103
104    public ContactMechanismAliasTypeDescriptionTransferCache getContactMechanismAliasTypeDescriptionTransferCache() {
105        return contactMechanismAliasTypeDescriptionTransferCache;
106    }
107
108    public ContactMechanismPurposeTransferCache getContactMechanismPurposeTransferCache() {
109        return contactMechanismPurposeTransferCache;
110    }
111    
112    public ContactMechanismTypeTransferCache getContactMechanismTypeTransferCache() {
113        return contactMechanismTypeTransferCache;
114    }
115    
116    public ContactMechanismTransferCache getContactMechanismTransferCache() {
117        return contactMechanismTransferCache;
118    }
119    
120    public ContactEmailAddressTransferCache getContactEmailAddressTransferCache() {
121        return contactEmailAddressTransferCache;
122    }
123    
124    public ContactPostalAddressTransferCache getContactPostalAddressTransferCache() {
125        return contactPostalAddressTransferCache;
126    }
127    
128    public ContactTelephoneTransferCache getContactTelephoneTransferCache() {
129        return contactTelephoneTransferCache;
130    }
131    
132    public PostalAddressFormatDescriptionTransferCache getPostalAddressFormatDescriptionTransferCache() {
133        return postalAddressFormatDescriptionTransferCache;
134    }
135    
136    public PostalAddressLineTransferCache getPostalAddressLineTransferCache() {
137        return postalAddressLineTransferCache;
138    }
139    
140    public PostalAddressLineElementTransferCache getPostalAddressLineElementTransferCache() {
141        return postalAddressLineElementTransferCache;
142    }
143    
144    public ContactWebAddressTransferCache getContactWebAddressTransferCache() {
145        return contactWebAddressTransferCache;
146    }
147    
148    public ContactMechanismAliasTransferCache getContactMechanismAliasTransferCache() {
149        return contactMechanismAliasTransferCache;
150    }
151    
152    public PartyContactMechanismAliasTransferCache getPartyContactMechanismAliasTransferCache() {
153        return partyContactMechanismAliasTransferCache;
154    }
155    
156    public PartyContactMechanismPurposeTransferCache getPartyContactMechanismPurposeTransferCache() {
157        return partyContactMechanismPurposeTransferCache;
158    }
159    
160    public PartyContactMechanismRelationshipTransferCache getPartyContactMechanismRelationshipTransferCache() {
161        return partyContactMechanismRelationshipTransferCache;
162    }
163    
164    public PartyContactMechanismTransferCache getPartyContactMechanismTransferCache() {
165        return partyContactMechanismTransferCache;
166    }
167    
168    public ContactInet4AddressTransferCache getContactInet4AddressTransferCache() {
169        return contactInet4AddressTransferCache;
170    }
171    
172}