1 /** 2 * This Source Code Form is subject to the terms of the Mozilla Public 3 * License, v. 2.0. If a copy of the MPL was not distributed with this 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 * 6 * If it is not possible or desirable to put the notice in a particular 7 * file, then You may include the notice in a location (such as a LICENSE 8 * file in a relevant directory) where a recipient would be likely to look 9 * for such a notice. 10 11 * 12 */ 13 14 /* --------------------------------------------------------------------------- 15 * U.S. Government, Department of the Army 16 * Army Materiel Command 17 * Research Development Engineering Command 18 * Communications Electronics Research Development and Engineering Center 19 * --------------------------------------------------------------------------- 20 */ 21 22 package org.oasis_open.docs.wsrf.rp_2; 23 24 import javax.xml.bind.annotation.XmlAccessType; 25 import javax.xml.bind.annotation.XmlAccessorType; 26 import javax.xml.bind.annotation.XmlElement; 27 import javax.xml.bind.annotation.XmlRootElement; 28 import javax.xml.bind.annotation.XmlType; 29 30 31 /** 32 * <p>Java class for anonymous complex type. 33 * 34 * <p>The following schema fragment specifies the expected content contained within this class. 35 * 36 * <pre> 37 * <complexType> 38 * <complexContent> 39 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 40 * <sequence> 41 * <element ref="{http://docs.oasis-open.org/wsrf/rp-2}QueryExpression"/> 42 * </sequence> 43 * </restriction> 44 * </complexContent> 45 * </complexType> 46 * </pre> 47 * 48 * 49 */ 50 @XmlAccessorType(XmlAccessType.FIELD) 51 @XmlType(name = "", propOrder = { 52 "queryExpression" 53 }) 54 @XmlRootElement(name = "QueryResourceProperties") 55 public class QueryResourceProperties { 56 57 @XmlElement(name = "QueryExpression", required = true) 58 protected QueryExpressionType queryExpression; 59 60 /** 61 * Gets the value of the queryExpression property. 62 * 63 * @return 64 * possible object is 65 * {@link QueryExpressionType } 66 * 67 */ 68 public QueryExpressionType getQueryExpression() { 69 return queryExpression; 70 } 71 72 /** 73 * Sets the value of the queryExpression property. 74 * 75 * @param value 76 * allowed object is 77 * {@link QueryExpressionType } 78 * 79 */ 80 public void setQueryExpression(QueryExpressionType value) { 81 this.queryExpression = value; 82 } 83 84 }