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 ItemKitMemberTransfer
024        extends BaseTransfer {
025    
026    private ItemTransfer item;
027    private InventoryConditionTransfer inventoryCondition;
028    private UnitOfMeasureTypeTransfer unitOfMeasureType;
029    private ItemTransfer memberItem;
030    private InventoryConditionTransfer memberInventoryCondition;
031    private UnitOfMeasureTypeTransfer memberUnitOfMeasureType;
032    private String quantity;
033    
034    /** Creates a new instance of ItemKitMemberTransfer */
035    public ItemKitMemberTransfer(ItemTransfer item, InventoryConditionTransfer inventoryCondition,
036            UnitOfMeasureTypeTransfer unitOfMeasureType, ItemTransfer memberItem,
037            InventoryConditionTransfer memberInventoryCondition, UnitOfMeasureTypeTransfer memberUnitOfMeasureType,
038            String quantity) {
039        this.item = item;
040        this.inventoryCondition = inventoryCondition;
041        this.unitOfMeasureType = unitOfMeasureType;
042        this.memberItem = memberItem;
043        this.memberInventoryCondition = memberInventoryCondition;
044        this.memberUnitOfMeasureType = memberUnitOfMeasureType;
045        this.quantity = quantity;
046    }
047    
048    public ItemTransfer getItem() {
049        return item;
050    }
051    
052    public void setItem(ItemTransfer item) {
053        this.item = item;
054    }
055    
056    public InventoryConditionTransfer getInventoryCondition() {
057        return inventoryCondition;
058    }
059    
060    public void setInventoryCondition(InventoryConditionTransfer inventoryCondition) {
061        this.inventoryCondition = inventoryCondition;
062    }
063    
064    public UnitOfMeasureTypeTransfer getUnitOfMeasureType() {
065        return unitOfMeasureType;
066    }
067    
068    public void setUnitOfMeasureType(UnitOfMeasureTypeTransfer unitOfMeasureType) {
069        this.unitOfMeasureType = unitOfMeasureType;
070    }
071    
072    public ItemTransfer getMemberItem() {
073        return memberItem;
074    }
075    
076    public void setMemberItem(ItemTransfer memberItem) {
077        this.memberItem = memberItem;
078    }
079    
080    public InventoryConditionTransfer getMemberInventoryCondition() {
081        return memberInventoryCondition;
082    }
083    
084    public void setMemberInventoryCondition(InventoryConditionTransfer memberInventoryCondition) {
085        this.memberInventoryCondition = memberInventoryCondition;
086    }
087    
088    public UnitOfMeasureTypeTransfer getMemberUnitOfMeasureType() {
089        return memberUnitOfMeasureType;
090    }
091    
092    public void setMemberUnitOfMeasureType(UnitOfMeasureTypeTransfer memberUnitOfMeasureType) {
093        this.memberUnitOfMeasureType = memberUnitOfMeasureType;
094    }
095    
096    public String getQuantity() {
097        return quantity;
098    }
099    
100    public void setQuantity(String quantity) {
101        this.quantity = quantity;
102    }
103    
104}