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 ItemPackCheckRequirementTransfer 023 extends BaseTransfer { 024 025 private ItemTransfer item; 026 private UnitOfMeasureTypeTransfer unitOfMeasureType; 027 private String minimumQuantity; 028 private String maximumQuantity; 029 030 /** Creates a new instance of ItemPackCheckRequirementTransfer */ 031 public ItemPackCheckRequirementTransfer(ItemTransfer item, UnitOfMeasureTypeTransfer unitOfMeasureType, String minimumQuantity, 032 String maximumQuantity) { 033 this.item = item; 034 this.unitOfMeasureType = unitOfMeasureType; 035 this.minimumQuantity = minimumQuantity; 036 this.maximumQuantity = maximumQuantity; 037 } 038 039 public ItemTransfer getItem() { 040 return item; 041 } 042 043 public void setItem(ItemTransfer item) { 044 this.item = item; 045 } 046 047 public UnitOfMeasureTypeTransfer getUnitOfMeasureType() { 048 return unitOfMeasureType; 049 } 050 051 public void setUnitOfMeasureType(UnitOfMeasureTypeTransfer unitOfMeasureType) { 052 this.unitOfMeasureType = unitOfMeasureType; 053 } 054 055 public String getMinimumQuantity() { 056 return minimumQuantity; 057 } 058 059 public void setMinimumQuantity(String minimumQuantity) { 060 this.minimumQuantity = minimumQuantity; 061 } 062 063 public String getMaximumQuantity() { 064 return maximumQuantity; 065 } 066 067 public void setMaximumQuantity(String maximumQuantity) { 068 this.maximumQuantity = maximumQuantity; 069 } 070 071}