![JAR search and dependency download from the Maven repository](/logo.png)
com.google.code.facebookapi.schema.Album 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 album complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="album">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="aid" type="{http://api.facebook.com/1.0/}aid"/>
* <element name="cover_pid" type="{http://api.facebook.com/1.0/}pid"/>
* <element name="owner" type="{http://api.facebook.com/1.0/}uid"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="created" type="{http://api.facebook.com/1.0/}time"/>
* <element name="modified" type="{http://api.facebook.com/1.0/}time"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="location" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="link" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="size" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "album", propOrder = {
"aid",
"coverPid",
"owner",
"name",
"created",
"modified",
"description",
"location",
"link",
"size"
})
public class Album {
protected long aid;
@XmlElement(name = "cover_pid")
protected long coverPid;
protected long owner;
@XmlElement(required = true)
protected String name;
protected int created;
protected int modified;
@XmlElement(required = true)
protected String description;
@XmlElement(required = true)
protected String location;
@XmlElement(required = true)
protected String link;
protected int size;
/**
* Gets the value of the aid property.
*
*/
public long getAid() {
return aid;
}
/**
* Sets the value of the aid property.
*
*/
public void setAid(long value) {
this.aid = value;
}
/**
* Gets the value of the coverPid property.
*
*/
public long getCoverPid() {
return coverPid;
}
/**
* Sets the value of the coverPid property.
*
*/
public void setCoverPid(long value) {
this.coverPid = value;
}
/**
* Gets the value of the owner property.
*
*/
public long getOwner() {
return owner;
}
/**
* Sets the value of the owner property.
*
*/
public void setOwner(long value) {
this.owner = 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 created property.
*
*/
public int getCreated() {
return created;
}
/**
* Sets the value of the created property.
*
*/
public void setCreated(int value) {
this.created = value;
}
/**
* Gets the value of the modified property.
*
*/
public int getModified() {
return modified;
}
/**
* Sets the value of the modified property.
*
*/
public void setModified(int value) {
this.modified = 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 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 link property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLink() {
return link;
}
/**
* Sets the value of the link property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLink(String value) {
this.link = value;
}
/**
* Gets the value of the size property.
*
*/
public int getSize() {
return size;
}
/**
* Sets the value of the size property.
*
*/
public void setSize(int value) {
this.size = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy