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.item.common.transfer; 018 019import com.echothree.model.control.geo.common.transfer.CountryTransfer; 020import com.echothree.util.common.transfer.BaseTransfer; 021 022public class ItemHarmonizedTariffScheduleCodeTransfer 023 extends BaseTransfer { 024 025 private ItemTransfer item; 026 private CountryTransfer countryGeoCode; 027 private HarmonizedTariffScheduleCodeUseTypeTransfer harmonizedTariffScheduleCodeUseType; 028 private HarmonizedTariffScheduleCodeTransfer harmonizedTariffScheduleCode; 029 030 /** Creates a new instance of ItemHarmonizedTariffScheduleCodeTransfer */ 031 public ItemHarmonizedTariffScheduleCodeTransfer(ItemTransfer item, CountryTransfer countryGeoCode, HarmonizedTariffScheduleCodeUseTypeTransfer harmonizedTariffScheduleCodeUseType, 032 HarmonizedTariffScheduleCodeTransfer harmonizedTariffScheduleCode) { 033 this.item = item; 034 this.countryGeoCode = countryGeoCode; 035 this.harmonizedTariffScheduleCodeUseType = harmonizedTariffScheduleCodeUseType; 036 this.harmonizedTariffScheduleCode = harmonizedTariffScheduleCode; 037 } 038 039 /** 040 * Returns the item. 041 * @return the item 042 */ 043 public ItemTransfer getItem() { 044 return item; 045 } 046 047 /** 048 * Sets the item. 049 * @param item the item to set 050 */ 051 public void setItem(ItemTransfer item) { 052 this.item = item; 053 } 054 055 /** 056 * Returns the countryGeoCode. 057 * @return the countryGeoCode 058 */ 059 public CountryTransfer getCountryGeoCode() { 060 return countryGeoCode; 061 } 062 063 /** 064 * Sets the countryGeoCode. 065 * @param countryGeoCode the countryGeoCode to set 066 */ 067 public void setCountryGeoCode(CountryTransfer countryGeoCode) { 068 this.countryGeoCode = countryGeoCode; 069 } 070 071 /** 072 * Returns the harmonizedTariffScheduleCodeUseType. 073 * @return the harmonizedTariffScheduleCodeUseType 074 */ 075 public HarmonizedTariffScheduleCodeUseTypeTransfer getHarmonizedTariffScheduleCodeUseType() { 076 return harmonizedTariffScheduleCodeUseType; 077 } 078 079 /** 080 * Sets the harmonizedTariffScheduleCodeUseType. 081 * @param harmonizedTariffScheduleCodeUseType the harmonizedTariffScheduleCodeUseType to set 082 */ 083 public void setHarmonizedTariffScheduleCodeUseType(HarmonizedTariffScheduleCodeUseTypeTransfer harmonizedTariffScheduleCodeUseType) { 084 this.harmonizedTariffScheduleCodeUseType = harmonizedTariffScheduleCodeUseType; 085 } 086 087 /** 088 * Returns the harmonizedTariffScheduleCode. 089 * @return the harmonizedTariffScheduleCode 090 */ 091 public HarmonizedTariffScheduleCodeTransfer getHarmonizedTariffScheduleCode() { 092 return harmonizedTariffScheduleCode; 093 } 094 095 /** 096 * Sets the harmonizedTariffScheduleCode. 097 * @param harmonizedTariffScheduleCode the harmonizedTariffScheduleCode to set 098 */ 099 public void setHarmonizedTariffScheduleCode(HarmonizedTariffScheduleCodeTransfer harmonizedTariffScheduleCode) { 100 this.harmonizedTariffScheduleCode = harmonizedTariffScheduleCode; 101 } 102 103}