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.shipment.common.transfer;
018
019import com.echothree.util.common.transfer.BaseTransfer;
020
021public class FreeOnBoardTransfer
022        extends BaseTransfer {
023    
024    private String freeOnBoardName;
025    private Boolean isDefault;
026    private Integer sortOrder;
027    private String description;
028    
029    /** Creates a new instance of FreeOnBoardTransfer */
030    public FreeOnBoardTransfer(String freeOnBoardName, Boolean isDefault, Integer sortOrder, String description) {
031        this.freeOnBoardName = freeOnBoardName;
032        this.isDefault = isDefault;
033        this.sortOrder = sortOrder;
034        this.description = description;
035    }
036    
037    public String getFreeOnBoardName() {
038        return freeOnBoardName;
039    }
040    
041    public void setFreeOnBoardName(String freeOnBoardName) {
042        this.freeOnBoardName = freeOnBoardName;
043    }
044    public Boolean getIsDefault() {
045        return isDefault;
046    }
047    
048    public void setIsDefault(Boolean isDefault) {
049        this.isDefault = isDefault;
050    }
051    
052    public Integer getSortOrder() {
053        return sortOrder;
054    }
055    
056    public void setSortOrder(Integer sortOrder) {
057        this.sortOrder = sortOrder;
058    }
059    
060    public String getDescription() {
061        return description;
062    }
063    
064    public void setDescription(String description) {
065        this.description = description;
066    }
067    
068}