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

com.facebook.api.schema.ObjectAssociation 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 object_association complex type. * *

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

 * <complexType name="object_association">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="id1" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="id2" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="data" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="time" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "object_association", propOrder = { "name", "id1", "id2", "data", "time" }) public class ObjectAssociation { @XmlElement(required = true) protected String name; protected long id1; protected long id2; @XmlElement(required = true) protected String data; protected int time; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the id1 property. * */ public long getId1() { return id1; } /** * Sets the value of the id1 property. * */ public void setId1(long value) { this.id1 = value; } /** * Gets the value of the id2 property. * */ public long getId2() { return id2; } /** * Sets the value of the id2 property. * */ public void setId2(long value) { this.id2 = value; } /** * Gets the value of the data property. * * @return * possible object is * {@link String } * */ public String getData() { return data; } /** * Sets the value of the data property. * * @param value * allowed object is * {@link String } * */ public void setData(String value) { this.data = value; } /** * Gets the value of the time property. * */ public int getTime() { return time; } /** * Sets the value of the time property. * */ public void setTime(int value) { this.time = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy