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

IdMap

public class IdMap extends Object

Java class for id_map complex type.

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

<complexType name="id_map">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="old_id" type="{http://api.facebook.com/1.0/}old_id"/>
<element name="new_id" type="{http://api.facebook.com/1.0/}id"/>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected String
oldId
protected long
newId
Constructors Summary
Methods Summary
public synchronized longgetNewId()
Gets the value of the newId property.

        return newId;
    
public synchronized java.lang.StringgetOldId()
Gets the value of the oldId property.

return
possible object is {@link String }

        return oldId;
    
public synchronized voidsetNewId(long value)
Sets the value of the newId property.

        this.newId = value;
    
public synchronized voidsetOldId(java.lang.String value)
Sets the value of the oldId property.

param
value allowed object is {@link String }

        this.oldId = value;