FileDocCategorySizeDatePackage
AssocObjectType.javaAPI DocGoogle Facebook API v1.42959Sat Oct 27 16:51:10 BST 2007com.facebook.api.schema

AssocObjectType

public class AssocObjectType extends Object

Java class for assoc_object_type complex type.

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

<complexType name="assoc_object_type">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="alias" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="object_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="unique" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected String
alias
protected String
objectType
protected boolean
unique
Constructors Summary
Methods Summary
public java.lang.StringgetAlias()
Gets the value of the alias property.

return
possible object is {@link String }

        return alias;
    
public java.lang.StringgetObjectType()
Gets the value of the objectType property.

return
possible object is {@link String }

        return objectType;
    
public booleanisUnique()
Gets the value of the unique property.

        return unique;
    
public voidsetAlias(java.lang.String value)
Sets the value of the alias property.

param
value allowed object is {@link String }

        this.alias = value;
    
public voidsetObjectType(java.lang.String value)
Sets the value of the objectType property.

param
value allowed object is {@link String }

        this.objectType = value;
    
public voidsetUnique(boolean value)
Sets the value of the unique property.

        this.unique = value;