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.warehouse.common.transfer; 018 019import com.echothree.util.common.transfer.BaseTransfer; 020 021public class LocationVolumeTransfer 022 extends BaseTransfer { 023 024 private LocationTransfer location; 025 private String height; 026 private String width; 027 private String depth; 028 private Long cubicVolume; 029 030 /** Creates a new instance of LocationVolumeTransfer */ 031 public LocationVolumeTransfer(LocationTransfer location, String height, String width, String depth, Long cubicVolume) { 032 this.location = location; 033 this.height = height; 034 this.width = width; 035 this.depth = depth; 036 this.cubicVolume = cubicVolume; 037 } 038 039 public LocationTransfer getLocation() { 040 return location; 041 } 042 043 public void setLocation(LocationTransfer location) { 044 this.location = location; 045 } 046 047 public String getHeight() { 048 return height; 049 } 050 051 public void setHeight(String height) { 052 this.height = height; 053 } 054 055 public String getWidth() { 056 return width; 057 } 058 059 public void setWidth(String width) { 060 this.width = width; 061 } 062 063 public String getDepth() { 064 return depth; 065 } 066 067 public void setDepth(String depth) { 068 this.depth = depth; 069 } 070 071 public Long getCubicVolume() { 072 return cubicVolume; 073 } 074 075 public void setCubicVolume(Long cubicVolume) { 076 this.cubicVolume = cubicVolume; 077 } 078 079}