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.item.common.transfer.HarmonizedTariffScheduleCodeTransfer;
020import com.echothree.util.common.transfer.BaseTransfer;
021
022public class HarmonizedTariffScheduleCodeResultTransfer
023        extends BaseTransfer {
024    
025    private String countryGeoCodeName;
026    private String harmonizedTariffScheduleCodeName;
027    private HarmonizedTariffScheduleCodeTransfer harmonizedTariffScheduleCode;
028    
029    /** Creates a new instance of HarmonizedTariffScheduleCodeResultTransfer */
030    public HarmonizedTariffScheduleCodeResultTransfer(String countryGeoCodeName, String harmonizedTariffScheduleCodeName,
031            HarmonizedTariffScheduleCodeTransfer harmonizedTariffScheduleCode) {
032        this.countryGeoCodeName = countryGeoCodeName;
033        this.harmonizedTariffScheduleCodeName = harmonizedTariffScheduleCodeName;
034        this.harmonizedTariffScheduleCode = harmonizedTariffScheduleCode;
035    }
036
037    /**
038     * Returns the countryGeoCodeName.
039     * @return the countryGeoCodeName
040     */
041    public String getCountryGeoCodeName() {
042        return countryGeoCodeName;
043    }
044
045    /**
046     * Sets the countryGeoCodeName.
047     * @param countryGeoCodeName the countryGeoCodeName to set
048     */
049    public void setCountryGeoCodeName(String countryGeoCodeName) {
050        this.countryGeoCodeName = countryGeoCodeName;
051    }
052
053    /**
054     * Returns the harmonizedTariffScheduleCodeName.
055     * @return the harmonizedTariffScheduleCodeName
056     */
057    public String getHarmonizedTariffScheduleCodeName() {
058        return harmonizedTariffScheduleCodeName;
059    }
060
061    /**
062     * Sets the harmonizedTariffScheduleCodeName.
063     * @param harmonizedTariffScheduleCodeName the harmonizedTariffScheduleCodeName to set
064     */
065    public void setHarmonizedTariffScheduleCodeName(String harmonizedTariffScheduleCodeName) {
066        this.harmonizedTariffScheduleCodeName = harmonizedTariffScheduleCodeName;
067    }
068
069    /**
070     * Returns the harmonizedTariffScheduleCode.
071     * @return the harmonizedTariffScheduleCode
072     */
073    public HarmonizedTariffScheduleCodeTransfer getHarmonizedTariffScheduleCode() {
074        return harmonizedTariffScheduleCode;
075    }
076
077    /**
078     * Sets the harmonizedTariffScheduleCode.
079     * @param harmonizedTariffScheduleCode the harmonizedTariffScheduleCode to set
080     */
081    public void setHarmonizedTariffScheduleCode(HarmonizedTariffScheduleCodeTransfer harmonizedTariffScheduleCode) {
082        this.harmonizedTariffScheduleCode = harmonizedTariffScheduleCode;
083    }
084
085 }