001// --------------------------------------------------------------------------------
002// Copyright 2002-2025 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.uom.common.transfer.UnitOfMeasureTypeTransfer;
020import com.echothree.util.common.transfer.BaseTransfer;
021
022public class ItemVolumeTransfer
023        extends BaseTransfer {
024    
025    private ItemTransfer item;
026    private UnitOfMeasureTypeTransfer unitOfMeasureType;
027    private ItemVolumeTypeTransfer itemVolumeType;
028    private String height;
029    private String width;
030    private String depth;
031
032    /** Creates a new instance of ItemVolumeTransfer */
033    public ItemVolumeTransfer(final ItemTransfer item, final UnitOfMeasureTypeTransfer unitOfMeasureType,
034            final ItemVolumeTypeTransfer itemVolumeType, final String height, final String width, final String depth) {
035        this.item = item;
036        this.unitOfMeasureType = unitOfMeasureType;
037        this.itemVolumeType = itemVolumeType;
038        this.height = height;
039        this.width = width;
040        this.depth = depth;
041    }
042
043    public ItemTransfer getItem() {
044        return item;
045    }
046
047    public void setItem(final ItemTransfer item) {
048        this.item = item;
049    }
050
051    public UnitOfMeasureTypeTransfer getUnitOfMeasureType() {
052        return unitOfMeasureType;
053    }
054
055    public void setUnitOfMeasureType(final UnitOfMeasureTypeTransfer unitOfMeasureType) {
056        this.unitOfMeasureType = unitOfMeasureType;
057    }
058
059    public ItemVolumeTypeTransfer getItemVolumeType() {
060        return itemVolumeType;
061    }
062
063    public void setItemVolumeType(final ItemVolumeTypeTransfer itemVolumeType) {
064        this.itemVolumeType = itemVolumeType;
065    }
066
067    public String getHeight() {
068        return height;
069    }
070
071    public void setHeight(final String height) {
072        this.height = height;
073    }
074
075    public String getWidth() {
076        return width;
077    }
078
079    public void setWidth(final String width) {
080        this.width = width;
081    }
082
083    public String getDepth() {
084        return depth;
085    }
086
087    public void setDepth(final String depth) {
088        this.depth = depth;
089    }
090
091}