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.inventory.common.transfer;
018
019import com.echothree.util.common.transfer.BaseTransfer;
020
021public class InventoryConditionUseTransfer
022        extends BaseTransfer {
023    
024    private InventoryConditionUseTypeTransfer inventoryConditionUseType;
025    private InventoryConditionTransfer inventoryCondition;
026    private Boolean isDefault;
027    
028    /** Creates a new instance of InventoryConditionUseTransfer */
029    public InventoryConditionUseTransfer(InventoryConditionUseTypeTransfer inventoryConditionUseType,
030            InventoryConditionTransfer inventoryCondition, Boolean isDefault) {
031        this.inventoryConditionUseType = inventoryConditionUseType;
032        this.inventoryCondition = inventoryCondition;
033        this.isDefault = isDefault;
034    }
035    
036    public InventoryConditionUseTypeTransfer getInventoryConditionUseType() {
037        return inventoryConditionUseType;
038    }
039    
040    public void setInventoryConditionUseType(InventoryConditionUseTypeTransfer inventoryConditionUseType) {
041        this.inventoryConditionUseType = inventoryConditionUseType;
042    }
043    
044    public InventoryConditionTransfer getInventoryCondition() {
045        return inventoryCondition;
046    }
047    
048    public void setInventoryCondition(InventoryConditionTransfer inventoryCondition) {
049        this.inventoryCondition = inventoryCondition;
050    }
051    
052    public Boolean getIsDefault() {
053        return isDefault;
054    }
055    
056    public void setIsDefault(Boolean isDefault) {
057        this.isDefault = isDefault;
058    }
059    
060}