com.google.code.facebookapi.schema.SessionInfo 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 session_info complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="session_info">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="session_key" type="{http://api.facebook.com/1.0/}session_key"/>
* <element name="uid" type="{http://api.facebook.com/1.0/}uid"/>
* <element name="expires" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="secret" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "session_info", propOrder = {
"sessionKey",
"uid",
"expires",
"secret"
})
public class SessionInfo {
@XmlElement(name = "session_key", required = true)
protected String sessionKey;
protected long uid;
protected int expires;
protected String secret;
/**
* Gets the value of the sessionKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSessionKey() {
return sessionKey;
}
/**
* Sets the value of the sessionKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSessionKey(String value) {
this.sessionKey = value;
}
/**
* Gets the value of the uid property.
*
*/
public long getUid() {
return uid;
}
/**
* Sets the value of the uid property.
*
*/
public void setUid(long value) {
this.uid = value;
}
/**
* Gets the value of the expires property.
*
*/
public int getExpires() {
return expires;
}
/**
* Sets the value of the expires property.
*
*/
public void setExpires(int value) {
this.expires = value;
}
/**
* Gets the value of the secret property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSecret() {
return secret;
}
/**
* Sets the value of the secret property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSecret(String value) {
this.secret = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy