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.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 String height; 028 private String width; 029 private String depth; 030 031 /** Creates a new instance of ItemVolumeTransfer */ 032 public ItemVolumeTransfer(ItemTransfer item, UnitOfMeasureTypeTransfer unitOfMeasureType, String height, String width, 033 String depth) { 034 this.item = item; 035 this.unitOfMeasureType = unitOfMeasureType; 036 this.height = height; 037 this.width = width; 038 this.depth = depth; 039 } 040 041 public ItemTransfer getItem() { 042 return item; 043 } 044 045 public void setItem(ItemTransfer item) { 046 this.item = item; 047 } 048 049 public UnitOfMeasureTypeTransfer getUnitOfMeasureType() { 050 return unitOfMeasureType; 051 } 052 053 public void setUnitOfMeasureType(UnitOfMeasureTypeTransfer unitOfMeasureType) { 054 this.unitOfMeasureType = unitOfMeasureType; 055 } 056 057 public String getHeight() { 058 return height; 059 } 060 061 public void setHeight(String height) { 062 this.height = height; 063 } 064 065 public String getWidth() { 066 return width; 067 } 068 069 public void setWidth(String width) { 070 this.width = width; 071 } 072 073 public String getDepth() { 074 return depth; 075 } 076 077 public void setDepth(String depth) { 078 this.depth = depth; 079 } 080 081}