package org.oliot.epcis_client; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.bson.BsonDocument; /** * Copyright (C) 2014-16 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 TransactionEvent extends EPCISEvent { // EventTime, EventTimeZoneOffset,Action, bizTransactionList required private String action; private Map<String, List<String>> bizTransactionList; private String parentID; private List<String> epcList; private List<QuantityElement> quantityList; private String bizStep; private String disposition; private String readPoint; private String bizLocation; private Map<String, List<String>> sourceList; private Map<String, List<String>> destinationList; private Map<String, String> namespaces; private BsonDocument extensions; public TransactionEvent(Map<String, List<String>> bizTransactionList) { super(); // Required Fields action = "OBSERVE"; this.bizTransactionList = bizTransactionList; epcList = new ArrayList<String>(); quantityList = new ArrayList<QuantityElement>(); sourceList = new HashMap<String, List<String>>(); destinationList = new HashMap<String, List<String>>(); namespaces = new HashMap<String, String>(); extensions = new BsonDocument(); } public TransactionEvent(long eventTime, String eventTimeZoneOffset, String action, Map<String, List<String>> bizTransactionList) { super(eventTime, eventTimeZoneOffset); this.action = action; this.bizTransactionList = bizTransactionList; epcList = new ArrayList<String>(); quantityList = new ArrayList<QuantityElement>(); sourceList = new HashMap<String, List<String>>(); destinationList = new HashMap<String, List<String>>(); namespaces = new HashMap<String, String>(); extensions = new BsonDocument(); } public String getAction() { return action; } public void setAction(String action) { this.action = action; } public Map<String, List<String>> getBizTransactionList() { return bizTransactionList; } public void setBizTransactionList(Map<String, List<String>> bizTransactionList) { this.bizTransactionList = bizTransactionList; } public String getParentID() { return parentID; } public void setParentID(String parentID) { this.parentID = parentID; } public List<String> getEpcList() { return epcList; } public void setEpcList(List<String> epcList) { this.epcList = epcList; } public List<QuantityElement> getQuantityList() { return quantityList; } public void setQuantityList(List<QuantityElement> quantityList) { this.quantityList = quantityList; } public String getBizStep() { return bizStep; } public void setBizStep(String bizStep) { this.bizStep = bizStep; } public String getDisposition() { return disposition; } public void setDisposition(String disposition) { this.disposition = disposition; } public String getReadPoint() { return readPoint; } public void setReadPoint(String readPoint) { this.readPoint = readPoint; } public String getBizLocation() { return bizLocation; } public void setBizLocation(String bizLocation) { this.bizLocation = bizLocation; } public Map<String, List<String>> getSourceList() { return sourceList; } public void setSourceList(Map<String, List<String>> sourceList) { this.sourceList = sourceList; } public Map<String, List<String>> getDestinationList() { return destinationList; } public void setDestinationList(Map<String, List<String>> destinationList) { this.destinationList = destinationList; } public Map<String, String> getNamespaces() { return namespaces; } public void setNamespaces(Map<String, String> namespaces) { this.namespaces = namespaces; } public BsonDocument getExtensions() { return extensions; } public void setExtensions(BsonDocument extensions) { this.extensions = extensions; } public BsonDocument asBsonDocument() { CaptureUtil util = new CaptureUtil(); BsonDocument transactionEvent = super.asBsonDocument(); // Required Fields transactionEvent = util.putAction(transactionEvent, action); transactionEvent = util.putBizTransactionList(transactionEvent, bizTransactionList); // Optional Fields if (this.parentID != null) { transactionEvent = util.putParentID(transactionEvent, parentID); } if (this.epcList != null && this.epcList.size() != 0) { transactionEvent = util.putEPCList(transactionEvent, epcList); } if (this.bizStep != null) { transactionEvent = util.putBizStep(transactionEvent, bizStep); } if (this.disposition != null) { transactionEvent = util.putDisposition(transactionEvent, disposition); } if (this.readPoint != null) { transactionEvent = util.putReadPoint(transactionEvent, readPoint); } if (this.bizLocation != null) { transactionEvent = util.putBizLocation(transactionEvent, bizLocation); } if (this.extensions != null && this.extensions.isEmpty() == false) { transactionEvent = util.putExtensions(transactionEvent, namespaces, extensions); } BsonDocument extension = new BsonDocument(); if (this.quantityList != null && this.quantityList.isEmpty() == false) { extension = util.putQuantityList(extension, quantityList); } if (this.sourceList != null && this.sourceList.isEmpty() == false) { extension = util.putSourceList(extension, sourceList); } if (this.destinationList != null && this.destinationList.isEmpty() == false) { extension = util.putDestinationList(extension, destinationList); } if (extension.isEmpty() == false) transactionEvent.put("extension", extension); return transactionEvent; } }