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.common.transfer;
018
019
020public class GeoCodeTransfer
021        extends BaseGeoCodeTransfer {
022    
023    private String geoCodeName;
024    private GeoCodeTypeTransfer geoCodeType;
025    private GeoCodeScopeTransfer geoCodeScope;
026    private Boolean isDefault;
027    private Integer sortOrder;
028    private String description;
029    
030    /** Creates a new instance of GeoCodeTransfer */
031    public GeoCodeTransfer(String geoCodeName, GeoCodeTypeTransfer geoCodeType, GeoCodeScopeTransfer geoCodeScope,
032            Boolean isDefault, Integer sortOrder, String description) {
033        this.geoCodeName = geoCodeName;
034        this.geoCodeType = geoCodeType;
035        this.geoCodeScope = geoCodeScope;
036        this.isDefault = isDefault;
037        this.sortOrder = sortOrder;
038        this.description = description;
039    }
040    
041    public String getGeoCodeName() {
042        return geoCodeName;
043    }
044    
045    public void setGeoCodeName(String geoCodeName) {
046        this.geoCodeName = geoCodeName;
047    }
048    
049    public GeoCodeTypeTransfer getGeoCodeType() {
050        return geoCodeType;
051    }
052    
053    public void setGeoCodeType(GeoCodeTypeTransfer geoCodeType) {
054        this.geoCodeType = geoCodeType;
055    }
056    
057    public GeoCodeScopeTransfer getGeoCodeScope() {
058        return geoCodeScope;
059    }
060    
061    public void setGeoCodeScope(GeoCodeScopeTransfer geoCodeScope) {
062        this.geoCodeScope = geoCodeScope;
063    }
064    
065    public Boolean getIsDefault() {
066        return isDefault;
067    }
068    
069    public void setIsDefault(Boolean isDefault) {
070        this.isDefault = isDefault;
071    }
072    
073    public Integer getSortOrder() {
074        return sortOrder;
075    }
076    
077    public void setSortOrder(Integer sortOrder) {
078        this.sortOrder = sortOrder;
079    }
080    
081    public String getDescription() {
082        return description;
083    }
084    
085    public void setDescription(String description) {
086        this.description = description;
087    }
088    
089}