/* * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template */ package com.megatim.fdxconvert.model.jaxb; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlElement; /** * * @author ASUS */ //@XmlRootElement(name = "entities") public class EntityList { @XmlElement(name = "entity") private List entityList = new ArrayList<>(); public List getEntities() { return entityList; } public void setEntities(List entities) { this.entityList = entities; } }