Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| package org.kie.services.client.serialization.jaxb.impl.query; | |
| 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.XmlRootElement; | |
| import javax.xml.bind.annotation.XmlSeeAlso; | |
| @XmlRootElement(name="query-task-result") | |
| @XmlAccessorType(XmlAccessType.FIELD) | |
| @XmlSeeAlso({JaxbQueryTaskInfo.class}) | |
| public class JaxbQueryTaskResult { | |
| @XmlElement | |
| private List<JaxbQueryTaskInfo> taskInfoList = new ArrayList<JaxbQueryTaskInfo>(); | |
| public JaxbQueryTaskResult() { | |
| // default for JAXB | |
| } | |
| public List<JaxbQueryTaskInfo> getTaskInfoList() { | |
| return taskInfoList; | |
| } | |
| public void setTaskInfoList( List<JaxbQueryTaskInfo> taskInfoList ) { | |
| this.taskInfoList = taskInfoList; | |
| } | |
| } |