/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2016, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. */ package org.geotoolkit.wps.xml.v200; 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.XmlType; /** * <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/2.0}RequestBaseType"> * <sequence> * <element ref="{http://www.opengis.net/wps/2.0}JobID"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "jobID" }) @XmlRootElement(name = "GetStatus") public class GetStatus extends RequestBaseType implements org.geotoolkit.wps.xml.GetStatus { @XmlElement(name = "JobID", required = true) protected String jobID; public GetStatus() { } public GetStatus(final String service, final String jobId) { super(service); this.jobID = jobId; } /** * Gets the value of the jobID property. * * @return * possible object is * {@link String } * */ public String getJobID() { return jobID; } /** * Sets the value of the jobID property. * * @param value * allowed object is * {@link String } * */ public void setJobID(String value) { this.jobID = value; } }