All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.facebook.api.schema.AssocObjectType 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: 2007.10.27 at 03:31:33 PM PDT 
//


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 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>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "assoc_object_type", propOrder = { "alias", "objectType", "unique" }) public class AssocObjectType { @XmlElement(required = true) protected String alias; @XmlElement(name = "object_type", required = true) protected String objectType; protected boolean unique; /** * Gets the value of the alias property. * * @return * possible object is * {@link String } * */ public String getAlias() { return alias; } /** * Sets the value of the alias property. * * @param value * allowed object is * {@link String } * */ public void setAlias(String value) { this.alias = value; } /** * Gets the value of the objectType property. * * @return * possible object is * {@link String } * */ public String getObjectType() { return objectType; } /** * Sets the value of the objectType property. * * @param value * allowed object is * {@link String } * */ public void setObjectType(String value) { this.objectType = value; } /** * Gets the value of the unique property. * */ public boolean isUnique() { return unique; } /** * Sets the value of the unique property. * */ public void setUnique(boolean value) { this.unique = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy