Package org.openwms.wms.receiving.api
Class ProductVO
- java.lang.Object
-
- org.openwms.wms.receiving.api.ProductVO
-
- All Implemented Interfaces:
Serializable
public class ProductVO extends Object implements Serializable
A ProductVO.- Author:
- Heiko Scherrer
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private org.openwms.core.units.api.Measurable
baseUnit
private String
description
private @NotEmpty(groups=Capture.class) String
sku
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.openwms.core.units.api.Measurable
getBaseUnit()
String
getDescription()
String
getSku()
void
setBaseUnit(org.openwms.core.units.api.Measurable baseUnit)
void
setDescription(String description)
void
setSku(String sku)
-
-
-
Field Detail
-
sku
@NotEmpty(groups=Capture.class) private @NotEmpty(groups=Capture.class) String sku
-
description
private String description
-
baseUnit
private org.openwms.core.units.api.Measurable baseUnit
-
-
Constructor Detail
-
ProductVO
ProductVO()
-
ProductVO
public ProductVO(@NotEmpty @NotEmpty String sku)
-
-
Method Detail
-
getSku
public String getSku()
-
getDescription
public String getDescription()
-
setSku
public void setSku(String sku)
-
setDescription
public void setDescription(String description)
-
getBaseUnit
public org.openwms.core.units.api.Measurable getBaseUnit()
-
setBaseUnit
public void setBaseUnit(org.openwms.core.units.api.Measurable baseUnit)
-
-