/** * * geo-platform * Rich webgis framework * http://geo-platform.org * ==================================================================== * * Copyright (C) 2008-2017 geoSDI Group (CNR IMAA - Potenza - ITALY). * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. This program is distributed in the * hope that it will be useful, but WITHOUT ANY WARRANTY; without * even the implied warranty of MERCHANTABILITY or FITNESS FOR * A PARTICULAR PURPOSE. See the GNU General Public License * for more details. You should have received a copy of the GNU General * Public License along with this program. If not, see http://www.gnu.org/licenses/ * * ==================================================================== * * Linking this library statically or dynamically with other modules is * making a combined work based on this library. Thus, the terms and * conditions of the GNU General Public License cover the whole combination. * * As a special exception, the copyright holders of this library give you permission * to link this library with independent modules to produce an executable, regardless * of the license terms of these independent modules, and to copy and distribute * the resulting executable under terms of your choice, provided that you also meet, * for each linked independent module, the terms and conditions of the license of * that module. An independent module is a module which is not derived from or * based on this library. If you modify this library, you may extend this exception * to your version of the library, but you are not obligated to do so. If you do not * wish to do so, delete this exception statement from your version. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.07.16 at 12:48:05 PM CEST // package org.geosdi.geoplatform.xml.wps.v100; 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.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy; import org.jvnet.jaxb2_commons.lang.ToString; import org.jvnet.jaxb2_commons.lang.ToStringStrategy; import org.jvnet.jaxb2_commons.locator.ObjectLocator; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <extension base="{http://www.opengis.net/wps/1.0.0}ResponseBaseType"> * <sequence> * <element name="Process" type="{http://www.opengis.net/wps/1.0.0}ProcessBriefType"/> * <element name="Status" type="{http://www.opengis.net/wps/1.0.0}StatusType"/> * <element name="DataInputs" type="{http://www.opengis.net/wps/1.0.0}DataInputsType" minOccurs="0"/> * <element name="OutputDefinitions" type="{http://www.opengis.net/wps/1.0.0}OutputDefinitionsType" minOccurs="0"/> * <element name="ProcessOutputs" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Output" type="{http://www.opengis.net/wps/1.0.0}OutputDataType" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * <attribute name="serviceInstance" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute name="statusLocation" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "process", "status", "dataInputs", "outputDefinitions", "processOutputs" }) @XmlRootElement(name = "ExecuteResponse") public class ExecuteResponse extends ResponseBaseType implements ToString { @XmlElement(name = "Process", required = true) protected ProcessBriefType process; @XmlElement(name = "Status", required = true) protected StatusType status; @XmlElement(name = "DataInputs") protected DataInputsType dataInputs; @XmlElement(name = "OutputDefinitions") protected OutputDefinitionsType outputDefinitions; @XmlElement(name = "ProcessOutputs") protected ExecuteResponse.ProcessOutputs processOutputs; @XmlAttribute(name = "serviceInstance", required = true) @XmlSchemaType(name = "anyURI") protected String serviceInstance; @XmlAttribute(name = "statusLocation") @XmlSchemaType(name = "anyURI") protected String statusLocation; /** * Gets the value of the process property. * * @return * possible object is * {@link ProcessBriefType } * */ public ProcessBriefType getProcess() { return process; } /** * Sets the value of the process property. * * @param value * allowed object is * {@link ProcessBriefType } * */ public void setProcess(ProcessBriefType value) { this.process = value; } public boolean isSetProcess() { return (this.process!= null); } /** * Gets the value of the status property. * * @return * possible object is * {@link StatusType } * */ public StatusType getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link StatusType } * */ public void setStatus(StatusType value) { this.status = value; } public boolean isSetStatus() { return (this.status!= null); } /** * Gets the value of the dataInputs property. * * @return * possible object is * {@link DataInputsType } * */ public DataInputsType getDataInputs() { return dataInputs; } /** * Sets the value of the dataInputs property. * * @param value * allowed object is * {@link DataInputsType } * */ public void setDataInputs(DataInputsType value) { this.dataInputs = value; } public boolean isSetDataInputs() { return (this.dataInputs!= null); } /** * Gets the value of the outputDefinitions property. * * @return * possible object is * {@link OutputDefinitionsType } * */ public OutputDefinitionsType getOutputDefinitions() { return outputDefinitions; } /** * Sets the value of the outputDefinitions property. * * @param value * allowed object is * {@link OutputDefinitionsType } * */ public void setOutputDefinitions(OutputDefinitionsType value) { this.outputDefinitions = value; } public boolean isSetOutputDefinitions() { return (this.outputDefinitions!= null); } /** * Gets the value of the processOutputs property. * * @return * possible object is * {@link ExecuteResponse.ProcessOutputs } * */ public ExecuteResponse.ProcessOutputs getProcessOutputs() { return processOutputs; } /** * Sets the value of the processOutputs property. * * @param value * allowed object is * {@link ExecuteResponse.ProcessOutputs } * */ public void setProcessOutputs(ExecuteResponse.ProcessOutputs value) { this.processOutputs = value; } public boolean isSetProcessOutputs() { return (this.processOutputs!= null); } /** * Gets the value of the serviceInstance property. * * @return * possible object is * {@link String } * */ public String getServiceInstance() { return serviceInstance; } /** * Sets the value of the serviceInstance property. * * @param value * allowed object is * {@link String } * */ public void setServiceInstance(String value) { this.serviceInstance = value; } public boolean isSetServiceInstance() { return (this.serviceInstance!= null); } /** * Gets the value of the statusLocation property. * * @return * possible object is * {@link String } * */ public String getStatusLocation() { return statusLocation; } /** * Sets the value of the statusLocation property. * * @param value * allowed object is * {@link String } * */ public void setStatusLocation(String value) { this.statusLocation = value; } public boolean isSetStatusLocation() { return (this.statusLocation!= null); } public String toString() { final ToStringStrategy strategy = JAXBToStringStrategy.INSTANCE; final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { strategy.appendStart(locator, this, buffer); appendFields(locator, buffer, strategy); strategy.appendEnd(locator, this, buffer); return buffer; } public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { super.appendFields(locator, buffer, strategy); { ProcessBriefType theProcess; theProcess = this.getProcess(); strategy.appendField(locator, this, "process", buffer, theProcess); } { StatusType theStatus; theStatus = this.getStatus(); strategy.appendField(locator, this, "status", buffer, theStatus); } { DataInputsType theDataInputs; theDataInputs = this.getDataInputs(); strategy.appendField(locator, this, "dataInputs", buffer, theDataInputs); } { OutputDefinitionsType theOutputDefinitions; theOutputDefinitions = this.getOutputDefinitions(); strategy.appendField(locator, this, "outputDefinitions", buffer, theOutputDefinitions); } { ExecuteResponse.ProcessOutputs theProcessOutputs; theProcessOutputs = this.getProcessOutputs(); strategy.appendField(locator, this, "processOutputs", buffer, theProcessOutputs); } { String theServiceInstance; theServiceInstance = this.getServiceInstance(); strategy.appendField(locator, this, "serviceInstance", buffer, theServiceInstance); } { String theStatusLocation; theStatusLocation = this.getStatusLocation(); strategy.appendField(locator, this, "statusLocation", buffer, theStatusLocation); } return buffer; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Output" type="{http://www.opengis.net/wps/1.0.0}OutputDataType" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "output" }) public static class ProcessOutputs implements ToString { @XmlElement(name = "Output", required = true) protected List<OutputDataType> output; /** * Gets the value of the output property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the output property. * * <p> * For example, to add a new item, do as follows: * <pre> * getOutput().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link OutputDataType } * * */ public List<OutputDataType> getOutput() { if (output == null) { output = new ArrayList<OutputDataType>(); } return this.output; } public boolean isSetOutput() { return ((this.output!= null)&&(!this.output.isEmpty())); } public void unsetOutput() { this.output = null; } public String toString() { final ToStringStrategy strategy = JAXBToStringStrategy.INSTANCE; final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { strategy.appendStart(locator, this, buffer); appendFields(locator, buffer, strategy); strategy.appendEnd(locator, this, buffer); return buffer; } public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { { List<OutputDataType> theOutput; theOutput = (this.isSetOutput()?this.getOutput():null); strategy.appendField(locator, this, "output", buffer, theOutput); } return buffer; } public void setOutput(List<OutputDataType> value) { this.output = null; List<OutputDataType> draftl = this.getOutput(); draftl.addAll(value); } } }