package com.mindprod.aws.jax; 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; /** *

Java class for anonymous complex type. *

*

The following schema fragment specifies the expected content contained within this class. *

*

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Keywords" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType( XmlAccessType.FIELD ) @XmlType( name = "", propOrder = { "keywords", "message" } ) @XmlRootElement( name = "CorrectedQuery" ) public class CorrectedQuery { @XmlElement( name = "Keywords" ) protected String keywords; @XmlElement( name = "Message" ) protected String message; /** * Gets the value of the keywords property. * * @return possible object is * {@link String } */ public String getKeywords() { return keywords; } /** * Sets the value of the keywords property. * * @param value allowed object is * {@link String } */ public void setKeywords( String value ) { this.keywords = value; } /** * Gets the value of the message property. * * @return possible object is * {@link String } */ public String getMessage() { return message; } /** * Sets the value of the message property. * * @param value allowed object is * {@link String } */ public void setMessage( String value ) { this.message = value; } }