package org.openlca.ilcd.descriptors; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "category" }) public class ProcessFlowCategorization implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(namespace = "http://www.ilcd-network.org/ILCD/ServiceAPI", required = true) public final List<ClassType> category = new ArrayList<>(); }