package org.jooq.util.xml.jaxb; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import org.jooq.util.jaxb.tools.StringAdapter; /** * <p>Java-Klasse für Table complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="Table"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element name="table_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="table_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="table_name" type="{http://www.w3.org/2001/XMLSchema}string"/> * </all> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Table", propOrder = { }) @SuppressWarnings({ "all" }) public class Table implements Serializable { private final static long serialVersionUID = 31000L; @XmlElement(name = "table_catalog") @XmlJavaTypeAdapter(StringAdapter.class) protected String tableCatalog; @XmlElement(name = "table_schema") @XmlJavaTypeAdapter(StringAdapter.class) protected String tableSchema; @XmlElement(name = "table_name", required = true) @XmlJavaTypeAdapter(StringAdapter.class) protected String tableName; /** * Ruft den Wert der tableCatalog-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getTableCatalog() { return tableCatalog; } /** * Legt den Wert der tableCatalog-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setTableCatalog(String value) { this.tableCatalog = value; } /** * Ruft den Wert der tableSchema-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getTableSchema() { return tableSchema; } /** * Legt den Wert der tableSchema-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setTableSchema(String value) { this.tableSchema = value; } /** * Ruft den Wert der tableName-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getTableName() { return tableName; } /** * Legt den Wert der tableName-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setTableName(String value) { this.tableName = value; } public Table withTableCatalog(String value) { setTableCatalog(value); return this; } public Table withTableSchema(String value) { setTableSchema(value); return this; } public Table withTableName(String value) { setTableName(value); return this; } }