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

org.jooq.util.xml.jaxb.Schema 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 Schema complex type. * *

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

 * <complexType name="Schema">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="catalog_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="schema_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Schema", propOrder = { }) @SuppressWarnings({ "all" }) public class Schema implements Serializable { private final static long serialVersionUID = 354L; @XmlElement(name = "catalog_name") @XmlJavaTypeAdapter(StringAdapter.class) protected String catalogName; @XmlElement(name = "schema_name", required = true) @XmlJavaTypeAdapter(StringAdapter.class) protected String schemaName; /** * Gets the value of the catalogName property. * * @return * possible object is * {@link String } * */ public String getCatalogName() { return catalogName; } /** * Sets the value of the catalogName property. * * @param value * allowed object is * {@link String } * */ public void setCatalogName(String value) { this.catalogName = value; } /** * Gets the value of the schemaName property. * * @return * possible object is * {@link String } * */ public String getSchemaName() { return schemaName; } /** * Sets the value of the schemaName property. * * @param value * allowed object is * {@link String } * */ public void setSchemaName(String value) { this.schemaName = value; } public Schema withCatalogName(String value) { setCatalogName(value); return this; } public Schema withSchemaName(String value) { setSchemaName(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy