com.google.code.facebookapi.schema.Event Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of facebook-java-api-schema Show documentation
Show all versions of facebook-java-api-schema Show documentation
Generated classes from XSD Schema
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-520
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2008.10.26 at 02:17:42 PM PDT
//
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 event complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="event">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="eid" type="{http://api.facebook.com/1.0/}eid"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="tagline" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="nid" type="{http://api.facebook.com/1.0/}nid"/>
* <element name="pic" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="pic_big" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="pic_small" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="host" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="event_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="event_subtype" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="start_time" type="{http://api.facebook.com/1.0/}time"/>
* <element name="end_time" type="{http://api.facebook.com/1.0/}time"/>
* <element name="creator" type="{http://api.facebook.com/1.0/}id"/>
* <element name="update_time" type="{http://api.facebook.com/1.0/}time"/>
* <element name="location" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="venue" type="{http://api.facebook.com/1.0/}location"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "event", propOrder = {
"eid",
"name",
"tagline",
"nid",
"pic",
"picBig",
"picSmall",
"host",
"description",
"eventType",
"eventSubtype",
"startTime",
"endTime",
"creator",
"updateTime",
"location",
"venue"
})
public class Event {
protected long eid;
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String tagline;
protected int nid;
@XmlElement(required = true)
protected String pic;
@XmlElement(name = "pic_big", required = true)
protected String picBig;
@XmlElement(name = "pic_small", required = true)
protected String picSmall;
@XmlElement(required = true)
protected String host;
@XmlElement(required = true)
protected String description;
@XmlElement(name = "event_type", required = true)
protected String eventType;
@XmlElement(name = "event_subtype", required = true)
protected String eventSubtype;
@XmlElement(name = "start_time")
protected int startTime;
@XmlElement(name = "end_time")
protected int endTime;
@XmlElement(required = true, type = Long.class, nillable = true)
protected Long creator;
@XmlElement(name = "update_time")
protected int updateTime;
@XmlElement(required = true)
protected String location;
@XmlElement(required = true)
protected Location venue;
/**
* Gets the value of the eid property.
*
*/
public long getEid() {
return eid;
}
/**
* Sets the value of the eid property.
*
*/
public void setEid(long value) {
this.eid = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the tagline property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTagline() {
return tagline;
}
/**
* Sets the value of the tagline property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTagline(String value) {
this.tagline = value;
}
/**
* Gets the value of the nid property.
*
*/
public int getNid() {
return nid;
}
/**
* Sets the value of the nid property.
*
*/
public void setNid(int value) {
this.nid = value;
}
/**
* Gets the value of the pic property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPic() {
return pic;
}
/**
* Sets the value of the pic property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPic(String value) {
this.pic = value;
}
/**
* Gets the value of the picBig property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPicBig() {
return picBig;
}
/**
* Sets the value of the picBig property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPicBig(String value) {
this.picBig = value;
}
/**
* Gets the value of the picSmall property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPicSmall() {
return picSmall;
}
/**
* Sets the value of the picSmall property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPicSmall(String value) {
this.picSmall = value;
}
/**
* Gets the value of the host property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHost() {
return host;
}
/**
* Sets the value of the host property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHost(String value) {
this.host = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the eventType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEventType() {
return eventType;
}
/**
* Sets the value of the eventType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEventType(String value) {
this.eventType = value;
}
/**
* Gets the value of the eventSubtype property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEventSubtype() {
return eventSubtype;
}
/**
* Sets the value of the eventSubtype property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEventSubtype(String value) {
this.eventSubtype = value;
}
/**
* Gets the value of the startTime property.
*
*/
public int getStartTime() {
return startTime;
}
/**
* Sets the value of the startTime property.
*
*/
public void setStartTime(int value) {
this.startTime = value;
}
/**
* Gets the value of the endTime property.
*
*/
public int getEndTime() {
return endTime;
}
/**
* Sets the value of the endTime property.
*
*/
public void setEndTime(int value) {
this.endTime = value;
}
/**
* Gets the value of the creator property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getCreator() {
return creator;
}
/**
* Sets the value of the creator property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setCreator(Long value) {
this.creator = value;
}
/**
* Gets the value of the updateTime property.
*
*/
public int getUpdateTime() {
return updateTime;
}
/**
* Sets the value of the updateTime property.
*
*/
public void setUpdateTime(int value) {
this.updateTime = value;
}
/**
* Gets the value of the location property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocation() {
return location;
}
/**
* Sets the value of the location property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocation(String value) {
this.location = value;
}
/**
* Gets the value of the venue property.
*
* @return
* possible object is
* {@link Location }
*
*/
public Location getVenue() {
return venue;
}
/**
* Sets the value of the venue property.
*
* @param value
* allowed object is
* {@link Location }
*
*/
public void setVenue(Location value) {
this.venue = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy