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

SessionInfo

public class SessionInfo extends Object

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>

Fields Summary
protected String
sessionKey
protected long
uid
protected int
expires
protected String
secret
Constructors Summary
Methods Summary
public synchronized intgetExpires()
Gets the value of the expires property.

        return expires;
    
public synchronized java.lang.StringgetSecret()
Gets the value of the secret property.

return
possible object is {@link String }

        return secret;
    
public synchronized java.lang.StringgetSessionKey()
Gets the value of the sessionKey property.

return
possible object is {@link String }

        return sessionKey;
    
public synchronized longgetUid()
Gets the value of the uid property.

        return uid;
    
public synchronized voidsetExpires(int value)
Sets the value of the expires property.

        this.expires = value;
    
public synchronized voidsetSecret(java.lang.String value)
Sets the value of the secret property.

param
value allowed object is {@link String }

        this.secret = value;
    
public synchronized voidsetSessionKey(java.lang.String value)
Sets the value of the sessionKey property.

param
value allowed object is {@link String }

        this.sessionKey = value;
    
public synchronized voidsetUid(long value)
Sets the value of the uid property.

        this.uid = value;