package org.cagrid.index.aggregator.types; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.oasis_open.docs.wsrf._2004._06.wsrf_ws_resourceproperties_1_2_draft_01.QueryExpressionType; /** * <p>Java class for QueryResourcePropertiesPollType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="QueryResourcePropertiesPollType"> * <complexContent> * <extension base="{http://mds.globus.org/aggregator/types}AggregatorPollType"> * <sequence> * <element name="QueryExpression" type="{http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd}QueryExpressionType"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "QueryResourcePropertiesPollType", propOrder = { "queryExpression" }) public class QueryResourcePropertiesPollType extends AggregatorPollType implements Serializable { @XmlElement(name = "QueryExpression", required = true) protected QueryExpressionType queryExpression; /** * Gets the value of the queryExpression property. * * @return * possible object is * {@link QueryExpressionType } * */ public QueryExpressionType getQueryExpression() { return queryExpression; } /** * Sets the value of the queryExpression property. * * @param value * allowed object is * {@link QueryExpressionType } * */ public void setQueryExpression(QueryExpressionType value) { this.queryExpression = value; } }