com.xcase.integrate.objects.IntegrateOutputList Maven / Gradle / Ivy
/**
* Copyright 2016 Xcase All rights reserved.
*/
package com.xcase.integrate.objects;
import java.util.*;
import javax.xml.bind.annotation.*;
/**
*
* @author martin
*/
@XmlRootElement(name = "outputs")
public class IntegrateOutputList {
List outputs;
public List getOutputs() {
return this.outputs;
}
@XmlElement(name = "output")
public void setOutputs(List outputs) {
this.outputs = outputs;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy