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.model.control.item.common.transfer.ItemTransfer; 020import com.echothree.model.control.party.common.transfer.PartyTransfer; 021import com.echothree.util.common.transfer.BaseTransfer; 022 023public class PartyInventoryLevelTransfer 024 extends BaseTransfer { 025 026 private PartyTransfer party; 027 private ItemTransfer item; 028 private InventoryConditionTransfer inventoryCondition; 029 private String minimumInventory; 030 private String maximumInventory; 031 private String reorderQuantity; 032 033 /** Creates a new instance of PartyInventoryLevelTransfer */ 034 public PartyInventoryLevelTransfer(PartyTransfer party, ItemTransfer item, InventoryConditionTransfer inventoryCondition, 035 String minimumInventory, String maximumInventory, String reorderQuantity) { 036 this.party = party; 037 this.item = item; 038 this.inventoryCondition = inventoryCondition; 039 this.minimumInventory = minimumInventory; 040 this.maximumInventory = maximumInventory; 041 this.reorderQuantity = reorderQuantity; 042 } 043 044 public PartyTransfer getParty() { 045 return party; 046 } 047 048 public void setParty(PartyTransfer party) { 049 this.party = party; 050 } 051 052 public ItemTransfer getItem() { 053 return item; 054 } 055 056 public void setItem(ItemTransfer item) { 057 this.item = item; 058 } 059 060 public InventoryConditionTransfer getInventoryCondition() { 061 return inventoryCondition; 062 } 063 064 public void setInventoryCondition(InventoryConditionTransfer inventoryCondition) { 065 this.inventoryCondition = inventoryCondition; 066 } 067 068 public String getMinimumInventory() { 069 return minimumInventory; 070 } 071 072 public void setMinimumInventory(String minimumInventory) { 073 this.minimumInventory = minimumInventory; 074 } 075 076 public String getMaximumInventory() { 077 return maximumInventory; 078 } 079 080 public void setMaximumInventory(String maximumInventory) { 081 this.maximumInventory = maximumInventory; 082 } 083 084 public String getReorderQuantity() { 085 return reorderQuantity; 086 } 087 088 public void setReorderQuantity(String reorderQuantity) { 089 this.reorderQuantity = reorderQuantity; 090 } 091 092}