// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2007.10.19 at 01:36:41 PM PDT // package com.facebook.infrastructure.loader; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Table" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="Key" type="{}KeyType"/> * <element name="ColumnFamily" type="{}ColumnFamilyType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "table", "key", "columnFamily" }) @XmlRootElement(name = "Importer") public class Importer { @XmlElement(name = "Table", required = true) protected String table; @XmlElement(name = "Key", required = true) protected KeyType key; @XmlElement(name = "ColumnFamily", required = true) protected ColumnFamilyType columnFamily; /** * Gets the value of the table property. * * @return * possible object is * {@link String } * */ public String getTable() { return table; } /** * Sets the value of the table property. * * @param value * allowed object is * {@link String } * */ public void setTable(String value) { this.table = value; } /** * Gets the value of the key property. * * @return * possible object is * {@link KeyType } * */ public KeyType getKey() { return key; } /** * Sets the value of the key property. * * @param value * allowed object is * {@link KeyType } * */ public void setKey(KeyType value) { this.key = value; } /** * Gets the value of the columnFamily property. * * @return * possible object is * {@link ColumnFamilyType } * */ public ColumnFamilyType getColumnFamily() { return columnFamily; } /** * Sets the value of the columnFamily property. * * @param value * allowed object is * {@link ColumnFamilyType } * */ public void setColumnFamily(ColumnFamilyType value) { this.columnFamily = value; } }