/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2015, 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; * version 2.1 of the License. * * 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.thw.xml; 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; import org.geotoolkit.skos.xml.Concept; /** * * @author Guilhem Legal (Geomatys) */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetAggregatedConceptResponse", propOrder = { "response" }) @XmlRootElement(name = "GetAggregatedConceptResponse", namespace = "http://ws.geotk.org/") public class GetAggregatedConceptResponse { @XmlElement(name = "return") private Concept response; public GetAggregatedConceptResponse() { } public GetAggregatedConceptResponse(Concept response) { this.response = response; } /** * Gets the value of the return property. * * @return * possible object is * {@link Concept } * */ public Concept getReturn() { return response; } /** * Sets the value of the return property. * * @param value * allowed object is * {@link Concept } * */ public void setReturn(Concept value) { this.response = value; } }