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 InventoryLocationGroupVolumeTransfer
022        extends BaseTransfer {
023    
024    private InventoryLocationGroupTransfer inventoryLocationGroup;
025    private String height;
026    private String width;
027    private String depth;
028    
029    /** Creates a new instance of InventoryLocationGroupVolumeTransfer */
030    public InventoryLocationGroupVolumeTransfer(InventoryLocationGroupTransfer inventoryLocationGroup, String height, String width,
031            String depth) {
032        this.inventoryLocationGroup = inventoryLocationGroup;
033        this.height = height;
034        this.width = width;
035        this.depth = depth;
036    }
037    
038    public InventoryLocationGroupTransfer getInventoryLocationGroup() {
039        return inventoryLocationGroup;
040    }
041    
042    public void setInventoryLocationGroup(InventoryLocationGroupTransfer inventoryLocationGroup) {
043        this.inventoryLocationGroup = inventoryLocationGroup;
044    }
045    
046    public String getHeight() {
047        return height;
048    }
049    
050    public void setHeight(String height) {
051        this.height = height;
052    }
053    
054    public String getWidth() {
055        return width;
056    }
057    
058    public void setWidth(String width) {
059        this.width = width;
060    }
061    
062    public String getDepth() {
063        return depth;
064    }
065    
066    public void setDepth(String depth) {
067        this.depth = depth;
068    }
069    
070}