com.facebook.api.schema.Friendlist Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2008.02.10 at 10:42:34 PM PST
//
package com.facebook.api.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 friendlist complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="friendlist">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="flid" type="{http://api.facebook.com/1.0/}flid"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="owner" type="{http://api.facebook.com/1.0/}uid" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "friendlist", propOrder = {
"flid",
"name",
"owner"
})
public class Friendlist {
protected long flid;
@XmlElement(required = true)
protected String name;
protected Integer owner;
/**
* Gets the value of the flid property.
*
*/
public long getFlid() {
return flid;
}
/**
* Sets the value of the flid property.
*
*/
public void setFlid(long value) {
this.flid = 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 owner property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getOwner() {
return owner;
}
/**
* Sets the value of the owner property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setOwner(Integer value) {
this.owner = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy