001// -------------------------------------------------------------------------------- 002// Copyright 2002-2024 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.geo.server.transfer; 018 019import com.echothree.model.control.geo.common.transfer.GeoCodeAliasTransfer; 020import com.echothree.model.control.geo.common.transfer.GeoCodeAliasTypeTransfer; 021import com.echothree.model.control.geo.common.transfer.GeoCodeScopeTransfer; 022import com.echothree.model.control.geo.common.transfer.GeoCodeTransfer; 023import com.echothree.model.control.geo.server.control.GeoControl; 024import com.echothree.model.data.geo.server.entity.GeoCodeAlias; 025import com.echothree.model.data.user.server.entity.UserVisit; 026 027public class GeoCodeAliasTransferCache 028 extends BaseGeoTransferCache<GeoCodeAlias, GeoCodeAliasTransfer> { 029 030 /** Creates a new instance of GeoCodeAliasTransferCache */ 031 public GeoCodeAliasTransferCache(UserVisit userVisit, GeoControl geoControl) { 032 super(userVisit, geoControl); 033 } 034 035 public GeoCodeAliasTransfer getGeoCodeAliasTransfer(GeoCodeAlias geoCodeAlias) { 036 GeoCodeAliasTransfer geoCodeAliasTransfer = get(geoCodeAlias); 037 038 if(geoCodeAliasTransfer == null) { 039 GeoCodeTransfer geoCode = geoControl.getGeoCodeTransfer(userVisit, geoCodeAlias.getGeoCode()); 040 GeoCodeScopeTransfer geoCodeScope = geoControl.getGeoCodeScopeTransfer(userVisit, geoCodeAlias.getGeoCodeScope()); 041 GeoCodeAliasTypeTransfer geoCodeAliasType = geoControl.getGeoCodeAliasTypeTransfer(userVisit, geoCodeAlias.getGeoCodeAliasType()); 042 String alias = geoCodeAlias.getAlias(); 043 044 geoCodeAliasTransfer = new GeoCodeAliasTransfer(geoCode, geoCodeScope, geoCodeAliasType, alias); 045 put(geoCodeAlias, geoCodeAliasTransfer); 046 } 047 048 return geoCodeAliasTransfer; 049 } 050 051}