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.inventory.common.transfer.InventoryConditionTransfer;
020import com.echothree.model.control.uom.common.transfer.UnitOfMeasureTypeTransfer;
021import com.echothree.util.common.transfer.BaseTransfer;
022
023public class ItemUnitLimitTransfer
024        extends BaseTransfer {
025    
026    private ItemTransfer item;
027    private InventoryConditionTransfer inventoryCondition;
028    private UnitOfMeasureTypeTransfer unitOfMeasureType;
029    private String minimumQuantity;
030    private String maximumQuantity;
031    
032    /** Creates a new instance of ItemUnitLimitTransfer */
033    public ItemUnitLimitTransfer(ItemTransfer item, InventoryConditionTransfer inventoryCondition,
034            UnitOfMeasureTypeTransfer unitOfMeasureType, String minimumQuantity, String maximumQuantity) {
035        this.item = item;
036        this.inventoryCondition = inventoryCondition;
037        this.unitOfMeasureType = unitOfMeasureType;
038        this.minimumQuantity = minimumQuantity;
039        this.maximumQuantity = maximumQuantity;
040    }
041    
042    public ItemTransfer getItem() {
043        return item;
044    }
045    
046    public void setItem(ItemTransfer item) {
047        this.item = item;
048    }
049    
050    public InventoryConditionTransfer getInventoryCondition() {
051        return inventoryCondition;
052    }
053    
054    public void setInventoryCondition(InventoryConditionTransfer inventoryCondition) {
055        this.inventoryCondition = inventoryCondition;
056    }
057    
058    public UnitOfMeasureTypeTransfer getUnitOfMeasureType() {
059        return unitOfMeasureType;
060    }
061    
062    public void setUnitOfMeasureType(UnitOfMeasureTypeTransfer unitOfMeasureType) {
063        this.unitOfMeasureType = unitOfMeasureType;
064    }
065    
066    public String getMinimumQuantity() {
067        return minimumQuantity;
068    }
069    
070    public void setMinimumQuantity(String minimumQuantity) {
071        this.minimumQuantity = minimumQuantity;
072    }
073    
074    public String getMaximumQuantity() {
075        return maximumQuantity;
076    }
077    
078    public void setMaximumQuantity(String maximumQuantity) {
079        this.maximumQuantity = maximumQuantity;
080    }
081    
082}