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.inventory.common.transfer;
018
019import com.echothree.model.control.accounting.common.transfer.CurrencyTransfer;
020import com.echothree.model.control.item.common.transfer.ItemTransfer;
021import com.echothree.model.control.party.common.transfer.PartyTransfer;
022import com.echothree.model.control.uom.common.transfer.UnitOfMeasureTypeTransfer;
023import com.echothree.util.common.transfer.BaseTransfer;
024import com.echothree.util.common.transfer.MapWrapper;
025
026public class LotTransfer
027        extends BaseTransfer {
028
029    private ItemTransfer item;
030    private String lotIdentifier;
031
032    private MapWrapper<LotAliasTransfer> lotAliases;
033    private MapWrapper<LotTimeTransfer> lotTimes;
034
035    public LotTransfer(final ItemTransfer item, final String lotIdentifier) {
036        this.item = item;
037        this.lotIdentifier = lotIdentifier;
038    }
039
040    public ItemTransfer getItem() {
041        return item;
042    }
043
044    public void setItem(final ItemTransfer item) {
045        this.item = item;
046    }
047
048    public String getLotIdentifier() {
049        return lotIdentifier;
050    }
051
052    public void setLotIdentifier(final String lotIdentifier) {
053        this.lotIdentifier = lotIdentifier;
054    }
055
056    public MapWrapper<LotAliasTransfer> getLotAliases() {
057        return lotAliases;
058    }
059
060    public void setLotAliases(final MapWrapper<LotAliasTransfer> lotAliases) {
061        this.lotAliases = lotAliases;
062    }
063
064    public MapWrapper<LotTimeTransfer> getLotTimes() {
065        return lotTimes;
066    }
067
068    public void setLotTimes(final MapWrapper<LotTimeTransfer> lotTimes) {
069        this.lotTimes = lotTimes;
070    }
071
072}