com.facebook.api.schema.ShortStoryTemplate Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2008.07.20 at 05:29:33 PM PDT
//
package com.facebook.api.schema;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for short_story_template complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="short_story_template">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="template_title" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="template_body" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="preferred_layout" type="{http://www.w3.org/2001/XMLSchema}short"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "short_story_template", propOrder = {
"templateTitle",
"templateBody",
"preferredLayout"
})
public class ShortStoryTemplate {
@XmlElement(name = "template_title", required = true)
protected String templateTitle;
@XmlElement(name = "template_body", required = true)
protected String templateBody;
@XmlElement(name = "preferred_layout")
protected short preferredLayout;
/**
* Gets the value of the templateTitle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTemplateTitle() {
return templateTitle;
}
/**
* Sets the value of the templateTitle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTemplateTitle(String value) {
this.templateTitle = value;
}
/**
* Gets the value of the templateBody property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTemplateBody() {
return templateBody;
}
/**
* Sets the value of the templateBody property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTemplateBody(String value) {
this.templateBody = value;
}
/**
* Gets the value of the preferredLayout property.
*
*/
public short getPreferredLayout() {
return preferredLayout;
}
/**
* Sets the value of the preferredLayout property.
*
*/
public void setPreferredLayout(short value) {
this.preferredLayout = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy