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.tax.common.transfer; 018 019import com.echothree.model.control.geo.common.transfer.CountryTransfer; 020import com.echothree.util.common.transfer.BaseTransfer; 021 022public class TaxClassificationTransfer 023 extends BaseTransfer { 024 025 private CountryTransfer countryGeoCode; 026 private String taxClassificationName; 027 private Boolean isDefault; 028 private Integer sortOrder; 029 private String description; 030 031 /** Creates a new instance of TaxClassificationTransfer */ 032 public TaxClassificationTransfer(CountryTransfer countryGeoCode, String taxClassificationName, Boolean isDefault, Integer sortOrder, String description) { 033 this.countryGeoCode = countryGeoCode; 034 this.taxClassificationName = taxClassificationName; 035 this.isDefault = isDefault; 036 this.sortOrder = sortOrder; 037 this.description = description; 038 } 039 040 /** 041 * Returns the countryGeoCode. 042 * @return the countryGeoCode 043 */ 044 public CountryTransfer getCountryGeoCode() { 045 return countryGeoCode; 046 } 047 048 /** 049 * Sets the countryGeoCode. 050 * @param countryGeoCode the countryGeoCode to set 051 */ 052 public void setCountryGeoCode(CountryTransfer countryGeoCode) { 053 this.countryGeoCode = countryGeoCode; 054 } 055 056 /** 057 * Returns the taxClassificationName. 058 * @return the taxClassificationName 059 */ 060 public String getTaxClassificationName() { 061 return taxClassificationName; 062 } 063 064 /** 065 * Sets the taxClassificationName. 066 * @param taxClassificationName the taxClassificationName to set 067 */ 068 public void setTaxClassificationName(String taxClassificationName) { 069 this.taxClassificationName = taxClassificationName; 070 } 071 072 /** 073 * Returns the isDefault. 074 * @return the isDefault 075 */ 076 public Boolean getIsDefault() { 077 return isDefault; 078 } 079 080 /** 081 * Sets the isDefault. 082 * @param isDefault the isDefault to set 083 */ 084 public void setIsDefault(Boolean isDefault) { 085 this.isDefault = isDefault; 086 } 087 088 /** 089 * Returns the sortOrder. 090 * @return the sortOrder 091 */ 092 public Integer getSortOrder() { 093 return sortOrder; 094 } 095 096 /** 097 * Sets the sortOrder. 098 * @param sortOrder the sortOrder to set 099 */ 100 public void setSortOrder(Integer sortOrder) { 101 this.sortOrder = sortOrder; 102 } 103 104 /** 105 * Returns the description. 106 * @return the description 107 */ 108 public String getDescription() { 109 return description; 110 } 111 112 /** 113 * Sets the description. 114 * @param description the description to set 115 */ 116 public void setDescription(String description) { 117 this.description = description; 118 } 119 120}