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

org.jooq.util.xml.jaxb.KeyColumnUsage Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.01.20 at 02:50:09 PM CET 
//


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;


/**
 * 

Java class for KeyColumnUsage complex type. * *

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

 * <complexType name="KeyColumnUsage">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="column_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="constraint_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="constraint_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="constraint_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ordinal_position" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <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>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "KeyColumnUsage", propOrder = { }) @SuppressWarnings({ "all" }) public class KeyColumnUsage implements Serializable { private final static long serialVersionUID = 354L; @XmlElement(name = "column_name", required = true) @XmlJavaTypeAdapter(StringAdapter.class) protected String columnName; @XmlElement(name = "constraint_catalog") @XmlJavaTypeAdapter(StringAdapter.class) protected String constraintCatalog; @XmlElement(name = "constraint_schema") @XmlJavaTypeAdapter(StringAdapter.class) protected String constraintSchema; @XmlElement(name = "constraint_name", required = true) @XmlJavaTypeAdapter(StringAdapter.class) protected String constraintName; @XmlElement(name = "ordinal_position") protected int ordinalPosition; @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; /** * Gets the value of the columnName property. * * @return * possible object is * {@link String } * */ public String getColumnName() { return columnName; } /** * Sets the value of the columnName property. * * @param value * allowed object is * {@link String } * */ public void setColumnName(String value) { this.columnName = value; } /** * Gets the value of the constraintCatalog property. * * @return * possible object is * {@link String } * */ public String getConstraintCatalog() { return constraintCatalog; } /** * Sets the value of the constraintCatalog property. * * @param value * allowed object is * {@link String } * */ public void setConstraintCatalog(String value) { this.constraintCatalog = value; } /** * Gets the value of the constraintSchema property. * * @return * possible object is * {@link String } * */ public String getConstraintSchema() { return constraintSchema; } /** * Sets the value of the constraintSchema property. * * @param value * allowed object is * {@link String } * */ public void setConstraintSchema(String value) { this.constraintSchema = value; } /** * Gets the value of the constraintName property. * * @return * possible object is * {@link String } * */ public String getConstraintName() { return constraintName; } /** * Sets the value of the constraintName property. * * @param value * allowed object is * {@link String } * */ public void setConstraintName(String value) { this.constraintName = value; } /** * Gets the value of the ordinalPosition property. * */ public int getOrdinalPosition() { return ordinalPosition; } /** * Sets the value of the ordinalPosition property. * */ public void setOrdinalPosition(int value) { this.ordinalPosition = value; } /** * Gets the value of the tableCatalog property. * * @return * possible object is * {@link String } * */ public String getTableCatalog() { return tableCatalog; } /** * Sets the value of the tableCatalog property. * * @param value * allowed object is * {@link String } * */ public void setTableCatalog(String value) { this.tableCatalog = value; } /** * Gets the value of the tableSchema property. * * @return * possible object is * {@link String } * */ public String getTableSchema() { return tableSchema; } /** * Sets the value of the tableSchema property. * * @param value * allowed object is * {@link String } * */ public void setTableSchema(String value) { this.tableSchema = value; } /** * Gets the value of the tableName property. * * @return * possible object is * {@link String } * */ public String getTableName() { return tableName; } /** * Sets the value of the tableName property. * * @param value * allowed object is * {@link String } * */ public void setTableName(String value) { this.tableName = value; } public KeyColumnUsage withColumnName(String value) { setColumnName(value); return this; } public KeyColumnUsage withConstraintCatalog(String value) { setConstraintCatalog(value); return this; } public KeyColumnUsage withConstraintSchema(String value) { setConstraintSchema(value); return this; } public KeyColumnUsage withConstraintName(String value) { setConstraintName(value); return this; } public KeyColumnUsage withOrdinalPosition(int value) { setOrdinalPosition(value); return this; } public KeyColumnUsage withTableCatalog(String value) { setTableCatalog(value); return this; } public KeyColumnUsage withTableSchema(String value) { setTableSchema(value); return this; } public KeyColumnUsage withTableName(String value) { setTableName(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy