All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.code.facebookapi.schema.FeedStory Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2008.12.01 at 07:56:21 PM GMT-08:00 
//


package com.google.code.facebookapi.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 feed_story complex type. * *

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

 * <complexType name="feed_story">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="story_title" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="story_body" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="images" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="flash" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="mp3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="video" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="time_published" type="{http://api.facebook.com/1.0/}time"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "feed_story", propOrder = { "storyTitle", "storyBody", "images", "flash", "mp3", "video", "timePublished" }) public class FeedStory { @XmlElement(name = "story_title", required = true) protected String storyTitle; @XmlElement(name = "story_body") protected String storyBody; protected String images; protected String flash; protected String mp3; protected String video; @XmlElement(name = "time_published") protected long timePublished; /** * Gets the value of the storyTitle property. * * @return * possible object is * {@link String } * */ public String getStoryTitle() { return storyTitle; } /** * Sets the value of the storyTitle property. * * @param value * allowed object is * {@link String } * */ public void setStoryTitle(String value) { this.storyTitle = value; } /** * Gets the value of the storyBody property. * * @return * possible object is * {@link String } * */ public String getStoryBody() { return storyBody; } /** * Sets the value of the storyBody property. * * @param value * allowed object is * {@link String } * */ public void setStoryBody(String value) { this.storyBody = value; } /** * Gets the value of the images property. * * @return * possible object is * {@link String } * */ public String getImages() { return images; } /** * Sets the value of the images property. * * @param value * allowed object is * {@link String } * */ public void setImages(String value) { this.images = value; } /** * Gets the value of the flash property. * * @return * possible object is * {@link String } * */ public String getFlash() { return flash; } /** * Sets the value of the flash property. * * @param value * allowed object is * {@link String } * */ public void setFlash(String value) { this.flash = value; } /** * Gets the value of the mp3 property. * * @return * possible object is * {@link String } * */ public String getMp3() { return mp3; } /** * Sets the value of the mp3 property. * * @param value * allowed object is * {@link String } * */ public void setMp3(String value) { this.mp3 = value; } /** * Gets the value of the video property. * * @return * possible object is * {@link String } * */ public String getVideo() { return video; } /** * Sets the value of the video property. * * @param value * allowed object is * {@link String } * */ public void setVideo(String value) { this.video = value; } /** * Gets the value of the timePublished property. * */ public long getTimePublished() { return timePublished; } /** * Sets the value of the timePublished property. * */ public void setTimePublished(long value) { this.timePublished = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy