001// --------------------------------------------------------------------------------
002// Copyright 2002-2026 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 InventoryLocationBucketTransfer
022        extends BaseTransfer {
023
024    private InventoryLocationTransfer inventoryLocation;
025    private InventoryBucketTypeTransfer inventoryBucketType;
026    private String quantity;
027
028    public InventoryLocationBucketTransfer(InventoryLocationTransfer inventoryLocation,
029            InventoryBucketTypeTransfer inventoryBucketType, String quantity) {
030        this.inventoryLocation = inventoryLocation;
031        this.inventoryBucketType = inventoryBucketType;
032        this.quantity = quantity;
033    }
034
035    public InventoryLocationTransfer getInventoryLocation() {
036        return inventoryLocation;
037    }
038
039    public void setInventoryLocation(InventoryLocationTransfer inventoryLocation) {
040        this.inventoryLocation = inventoryLocation;
041    }
042
043    public InventoryBucketTypeTransfer getInventoryBucketType() {
044        return inventoryBucketType;
045    }
046
047    public void setInventoryBucketType(InventoryBucketTypeTransfer inventoryBucketType) {
048        this.inventoryBucketType = inventoryBucketType;
049    }
050
051    public String getQuantity() {
052        return quantity;
053    }
054
055    public void setQuantity(String quantity) {
056        this.quantity = quantity;
057    }
058
059}