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

Affiliation

public class Affiliation extends Object

Java class for affiliation complex type.

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

<complexType name="affiliation">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="nid" type="{http://api.facebook.com/1.0/}nid"/>
<element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="year" type="{http://api.facebook.com/1.0/}year"/>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected long
nid
protected String
name
protected String
type
protected String
status
protected int
year
Constructors Summary
Methods Summary
public synchronized java.lang.StringgetName()
Gets the value of the name property.

return
possible object is {@link String }

        return name;
    
public synchronized longgetNid()
Gets the value of the nid property.

        return nid;
    
public synchronized java.lang.StringgetStatus()
Gets the value of the status property.

return
possible object is {@link String }

        return status;
    
public synchronized java.lang.StringgetType()
Gets the value of the type property.

return
possible object is {@link String }

        return type;
    
public synchronized intgetYear()
Gets the value of the year property.

        return year;
    
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 voidsetNid(long value)
Sets the value of the nid property.

        this.nid = value;
    
public synchronized voidsetStatus(java.lang.String value)
Sets the value of the status property.

param
value allowed object is {@link String }

        this.status = value;
    
public synchronized voidsetType(java.lang.String value)
Sets the value of the type property.

param
value allowed object is {@link String }

        this.type = value;
    
public synchronized voidsetYear(int value)
Sets the value of the year property.

        this.year = value;