com.google.code.facebookapi.schema
Class StreamData

java.lang.Object
  extended by com.google.code.facebookapi.schema.StreamData
All Implemented Interfaces:
org.jvnet.jaxb2_commons.lang.Equals, org.jvnet.jaxb2_commons.lang.HashCode, org.jvnet.jaxb2_commons.lang.ToString

public class StreamData
extends java.lang.Object
implements org.jvnet.jaxb2_commons.lang.Equals, org.jvnet.jaxb2_commons.lang.HashCode, org.jvnet.jaxb2_commons.lang.ToString

Java class for stream_data complex type.

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

 <complexType name="stream_data">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="posts">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <sequence maxOccurs="unbounded" minOccurs="0">
                   <element name="stream_post" type="{http://api.facebook.com/1.0/}stream_post" maxOccurs="unbounded" minOccurs="0"/>
                 </sequence>
                 <attribute name="list" type="{http://www.w3.org/2001/XMLSchema}boolean" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
         <element name="profiles">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <sequence maxOccurs="unbounded" minOccurs="0">
                   <element name="profile" type="{http://api.facebook.com/1.0/}profile" maxOccurs="unbounded" minOccurs="0"/>
                 </sequence>
                 <attribute name="list" type="{http://www.w3.org/2001/XMLSchema}boolean" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
         <element name="albums">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <sequence maxOccurs="unbounded" minOccurs="0">
                   <element name="album" type="{http://api.facebook.com/1.0/}album" maxOccurs="unbounded" minOccurs="0"/>
                 </sequence>
                 <attribute name="list" type="{http://www.w3.org/2001/XMLSchema}boolean" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
         <element name="photo_tags">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <sequence maxOccurs="unbounded" minOccurs="0">
                   <element name="photo_tag" type="{http://api.facebook.com/1.0/}photo_tag" maxOccurs="unbounded" minOccurs="0"/>
                 </sequence>
                 <attribute name="list" type="{http://www.w3.org/2001/XMLSchema}boolean" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
         <element name="photo_feedback">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <sequence maxOccurs="unbounded" minOccurs="0">
                   <element name="photo_feedback" type="{http://api.facebook.com/1.0/}photo_feedback" maxOccurs="unbounded" minOccurs="0"/>
                 </sequence>
                 <attribute name="list" type="{http://www.w3.org/2001/XMLSchema}boolean" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
         <element name="connections">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <sequence maxOccurs="unbounded" minOccurs="0">
                   <element name="connection" type="{http://api.facebook.com/1.0/}connection" maxOccurs="unbounded" minOccurs="0"/>
                 </sequence>
                 <attribute name="list" type="{http://www.w3.org/2001/XMLSchema}boolean" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Nested Class Summary
static class StreamData.Albums
          Java class for anonymous complex type.
static class StreamData.Connections
          Java class for anonymous complex type.
static class StreamData.PhotoFeedback
          Java class for anonymous complex type.
static class StreamData.PhotoTags
          Java class for anonymous complex type.
static class StreamData.Posts
          Java class for anonymous complex type.
static class StreamData.Profiles
          Java class for anonymous complex type.
 
Field Summary
protected  StreamData.Albums albums
           
protected  StreamData.Connections connections
           
protected  StreamData.PhotoFeedback photoFeedback
           
protected  StreamData.PhotoTags photoTags
           
protected  StreamData.Posts posts
           
protected  StreamData.Profiles profiles
           
 
Constructor Summary
StreamData()
           
 
Method Summary
 boolean equals(java.lang.Object object)
           
 void equals(java.lang.Object object, org.apache.commons.lang.builder.EqualsBuilder equalsBuilder)
           
 StreamData.Albums getAlbums()
          Gets the value of the albums property.
 StreamData.Connections getConnections()
          Gets the value of the connections property.
 StreamData.PhotoFeedback getPhotoFeedback()
          Gets the value of the photoFeedback property.
 StreamData.PhotoTags getPhotoTags()
          Gets the value of the photoTags property.
 StreamData.Posts getPosts()
          Gets the value of the posts property.
 StreamData.Profiles getProfiles()
          Gets the value of the profiles property.
 int hashCode()
           
 void hashCode(org.apache.commons.lang.builder.HashCodeBuilder hashCodeBuilder)
           
 void setAlbums(StreamData.Albums value)
          Sets the value of the albums property.
 void setConnections(StreamData.Connections value)
          Sets the value of the connections property.
 void setPhotoFeedback(StreamData.PhotoFeedback value)
          Sets the value of the photoFeedback property.
 void setPhotoTags(StreamData.PhotoTags value)
          Sets the value of the photoTags property.
 void setPosts(StreamData.Posts value)
          Sets the value of the posts property.
 void setProfiles(StreamData.Profiles value)
          Sets the value of the profiles property.
 java.lang.String toString()
           
 void toString(org.apache.commons.lang.builder.ToStringBuilder toStringBuilder)
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

posts

protected StreamData.Posts posts

profiles

protected StreamData.Profiles profiles

albums

protected StreamData.Albums albums

photoTags

protected StreamData.PhotoTags photoTags

photoFeedback

protected StreamData.PhotoFeedback photoFeedback

connections

protected StreamData.Connections connections
Constructor Detail

StreamData

public StreamData()
Method Detail

getPosts

public StreamData.Posts getPosts()
Gets the value of the posts property.

Returns:
possible object is StreamData.Posts

setPosts

public void setPosts(StreamData.Posts value)
Sets the value of the posts property.

Parameters:
value - allowed object is StreamData.Posts

getProfiles

public StreamData.Profiles getProfiles()
Gets the value of the profiles property.

Returns:
possible object is StreamData.Profiles

setProfiles

public void setProfiles(StreamData.Profiles value)
Sets the value of the profiles property.

Parameters:
value - allowed object is StreamData.Profiles

getAlbums

public StreamData.Albums getAlbums()
Gets the value of the albums property.

Returns:
possible object is StreamData.Albums

setAlbums

public void setAlbums(StreamData.Albums value)
Sets the value of the albums property.

Parameters:
value - allowed object is StreamData.Albums

getPhotoTags

public StreamData.PhotoTags getPhotoTags()
Gets the value of the photoTags property.

Returns:
possible object is StreamData.PhotoTags

setPhotoTags

public void setPhotoTags(StreamData.PhotoTags value)
Sets the value of the photoTags property.

Parameters:
value - allowed object is StreamData.PhotoTags

getPhotoFeedback

public StreamData.PhotoFeedback getPhotoFeedback()
Gets the value of the photoFeedback property.

Returns:
possible object is StreamData.PhotoFeedback

setPhotoFeedback

public void setPhotoFeedback(StreamData.PhotoFeedback value)
Sets the value of the photoFeedback property.

Parameters:
value - allowed object is StreamData.PhotoFeedback

getConnections

public StreamData.Connections getConnections()
Gets the value of the connections property.

Returns:
possible object is StreamData.Connections

setConnections

public void setConnections(StreamData.Connections value)
Sets the value of the connections property.

Parameters:
value - allowed object is StreamData.Connections

toString

public void toString(org.apache.commons.lang.builder.ToStringBuilder toStringBuilder)
Specified by:
toString in interface org.jvnet.jaxb2_commons.lang.ToString

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

equals

public void equals(java.lang.Object object,
                   org.apache.commons.lang.builder.EqualsBuilder equalsBuilder)
Specified by:
equals in interface org.jvnet.jaxb2_commons.lang.Equals

equals

public boolean equals(java.lang.Object object)
Overrides:
equals in class java.lang.Object

hashCode

public void hashCode(org.apache.commons.lang.builder.HashCodeBuilder hashCodeBuilder)
Specified by:
hashCode in interface org.jvnet.jaxb2_commons.lang.HashCode

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object


Copyright © 2010. All Rights Reserved.