FileDocCategorySizeDatePackage
Album.javaAPI DocGoogle Facebook API v1.46520Tue Oct 23 20:16:10 BST 2007com.facebook.api.schema

Album

public class Album extends Object

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>

Fields Summary
protected long
aid
protected long
coverPid
protected long
owner
protected String
name
protected int
created
protected int
modified
protected String
description
protected String
location
protected String
link
protected int
size
Constructors Summary
Methods Summary
public synchronized longgetAid()
Gets the value of the aid property.

        return aid;
    
public synchronized longgetCoverPid()
Gets the value of the coverPid property.

        return coverPid;
    
public synchronized intgetCreated()
Gets the value of the created property.

        return created;
    
public synchronized java.lang.StringgetDescription()
Gets the value of the description property.

return
possible object is {@link String }

        return description;
    
public synchronized java.lang.StringgetLink()
Gets the value of the link property.

return
possible object is {@link String }

        return link;
    
public synchronized java.lang.StringgetLocation()
Gets the value of the location property.

return
possible object is {@link String }

        return location;
    
public synchronized intgetModified()
Gets the value of the modified property.

        return modified;
    
public synchronized java.lang.StringgetName()
Gets the value of the name property.

return
possible object is {@link String }

        return name;
    
public synchronized longgetOwner()
Gets the value of the owner property.

        return owner;
    
public synchronized intgetSize()
Gets the value of the size property.

        return size;
    
public synchronized voidsetAid(long value)
Sets the value of the aid property.

        this.aid = value;
    
public synchronized voidsetCoverPid(long value)
Sets the value of the coverPid property.

        this.coverPid = value;
    
public synchronized voidsetCreated(int value)
Sets the value of the created property.

        this.created = value;
    
public synchronized voidsetDescription(java.lang.String value)
Sets the value of the description property.

param
value allowed object is {@link String }

        this.description = value;
    
public synchronized voidsetLink(java.lang.String value)
Sets the value of the link property.

param
value allowed object is {@link String }

        this.link = value;
    
public synchronized voidsetLocation(java.lang.String value)
Sets the value of the location property.

param
value allowed object is {@link String }

        this.location = value;
    
public synchronized voidsetModified(int value)
Sets the value of the modified property.

        this.modified = value;
    
public synchronized voidsetName(java.lang.String value)
Sets the value of the name property.

param
value allowed object is {@link String }

        this.name = value;
    
public synchronized voidsetOwner(long value)
Sets the value of the owner property.

        this.owner = value;
    
public synchronized voidsetSize(int value)
Sets the value of the size property.

        this.size = value;