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="Source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="IsLinkSuppressed" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType( XmlAccessType.FIELD ) @XmlType( name = "", propOrder = { "source", "content", "isLinkSuppressed" } ) @XmlRootElement( name = "EditorialReview" ) public class EditorialReview { @XmlElement( name = "Source" ) protected String source; @XmlElement( name = "Content" ) protected String content; @XmlElement( name = "IsLinkSuppressed" ) protected Boolean isLinkSuppressed; /** * Gets the value of the content property. * * @return possible object is * {@link String } */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value allowed object is * {@link String } */ public void setContent( String value ) { this.content = value; } /** * Gets the value of the source property. * * @return possible object is * {@link String } */ public String getSource() { return source; } /** * Sets the value of the source property. * * @param value allowed object is * {@link String } */ public void setSource( String value ) { this.source = value; } /** * Gets the value of the isLinkSuppressed property. * * @return possible object is * {@link Boolean } */ public Boolean isIsLinkSuppressed() { return isLinkSuppressed; } /** * Sets the value of the isLinkSuppressed property. * * @param value allowed object is * {@link Boolean } */ public void setIsLinkSuppressed( Boolean value ) { this.isLinkSuppressed = value; } }