001package io.ebeaninternal.xmlmapping.model; 002 003import javax.xml.bind.annotation.XmlAccessType; 004import javax.xml.bind.annotation.XmlAccessorType; 005import javax.xml.bind.annotation.XmlRootElement; 006import javax.xml.bind.annotation.XmlType; 007import javax.xml.bind.annotation.XmlValue; 008 009 010/** 011 * <p>Java class for anonymous complex type. 012 * <p> 013 * <p>The following schema fragment specifies the expected content contained within this class. 014 * <p> 015 * <pre> 016 * <complexType> 017 * <simpleContent> 018 * <extension base="<http://www.w3.org/2001/XMLSchema>string"> 019 * </extension> 020 * </simpleContent> 021 * </complexType> 022 * </pre> 023 */ 024@XmlAccessorType(XmlAccessType.FIELD) 025@XmlType(name = "", propOrder = { 026 "value" 027}) 028@XmlRootElement(name = "query") 029public class XmQuery { 030 031 @XmlValue 032 protected String value; 033 034 /** 035 * Gets the value of the value property. 036 * 037 * @return possible object is 038 * {@link String } 039 */ 040 public String getValue() { 041 return value; 042 } 043 044 /** 045 * Sets the value of the value property. 046 * 047 * @param value allowed object is 048 * {@link String } 049 */ 050 public void setValue(String value) { 051 this.value = value; 052 } 053 054}