Package org.openwms.wms.receiving.api
Class CaptureRequestVO
- java.lang.Object
-
- org.openwms.wms.receiving.api.CaptureRequestVO
-
- All Implemented Interfaces:
Serializable
public class CaptureRequestVO extends Object implements Serializable
A CaptureRequestVO.- Author:
- Heiko Scherrer
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private CaptureDetailsVO
details
private @NotEmpty String
loadUnitLabel
private @NotNull ProductVO
product
private @NotNull org.openwms.core.units.api.Measurable
quantityReceived
The unique identifier of anReceivingOrder
.private @NotEmpty String
transportUnitId
-
Constructor Summary
Constructors Constructor Description CaptureRequestVO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CaptureDetailsVO
getDetails()
String
getLoadUnitLabel()
ProductVO
getProduct()
org.openwms.core.units.api.Measurable
getQuantityReceived()
String
getTransportUnitId()
void
setDetails(CaptureDetailsVO details)
void
setLoadUnitLabel(String loadUnitLabel)
void
setProduct(ProductVO product)
void
setQuantityReceived(org.openwms.core.units.api.Measurable quantityReceived)
void
setTransportUnitId(String transportUnitId)
-
-
-
Field Detail
-
quantityReceived
@NotNull private @NotNull org.openwms.core.units.api.Measurable quantityReceived
The unique identifier of anReceivingOrder
.
-
product
@NotNull private @NotNull ProductVO product
-
transportUnitId
@NotEmpty private @NotEmpty String transportUnitId
-
loadUnitLabel
@NotEmpty private @NotEmpty String loadUnitLabel
-
details
private CaptureDetailsVO details
-
-
Method Detail
-
getQuantityReceived
public org.openwms.core.units.api.Measurable getQuantityReceived()
-
setQuantityReceived
public void setQuantityReceived(org.openwms.core.units.api.Measurable quantityReceived)
-
getProduct
public ProductVO getProduct()
-
setProduct
public void setProduct(ProductVO product)
-
getTransportUnitId
public String getTransportUnitId()
-
setTransportUnitId
public void setTransportUnitId(String transportUnitId)
-
getLoadUnitLabel
public String getLoadUnitLabel()
-
setLoadUnitLabel
public void setLoadUnitLabel(String loadUnitLabel)
-
getDetails
public CaptureDetailsVO getDetails()
-
setDetails
public void setDetails(CaptureDetailsVO details)
-
-