package org.oliot.epcis_client; /** * Copyright (C) 2014-17 Jaewook Byun * * This project is part of Oliot (oliot.org), pursuing the implementation of * Electronic Product Code Information Service(EPCIS) v1.1 specification in * EPCglobal. * [http://www.gs1.org/gsmp/kc/epcglobal/epcis/epcis_1_1-standard-20140520.pdf] * * * @author Jaewook Jack Byun, Ph.D student * * Korea Advanced Institute of Science and Technology (KAIST) * * Real-time Embedded System Laboratory(RESL) * * bjw0829@kaist.ac.kr, bjw0829@gmail.com */ public class QuantityElement { // epcClass : mandatory field private String epcClass; private Double quantity; private String uom; public String getEpcClass() { return epcClass; } public void setEpcClass(String epcClass) { this.epcClass = epcClass; } public Double getQuantity() { return quantity; } public void setQuantity(Double quantity) { this.quantity = quantity; } public String getUom() { return uom; } public void setUom(String uom) { this.uom = uom; } }