/*
|
* 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<Entity> entityList = new ArrayList<>();
|
|
public List<Entity> getEntities() {
|
return entityList;
|
}
|
|
public void setEntities(List<Entity> entities) {
|
this.entityList = entities;
|
}
|
|
}
|