org.jooq.util.jaxb.Schema Maven / Gradle / Ivy
//
// 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: 2014.07.15 at 05:21:57 PM CEST
//
package org.jooq.util.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.TrimAdapter;
/**
* 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="inputSchema" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="outputSchema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Schema", propOrder = {
})
@SuppressWarnings({
"all"
})
public class Schema implements Serializable
{
private final static long serialVersionUID = 320L;
@XmlElement(required = true, defaultValue = "")
@XmlJavaTypeAdapter(TrimAdapter.class)
protected String inputSchema = "";
@XmlJavaTypeAdapter(TrimAdapter.class)
protected String outputSchema;
/**
* Gets the value of the inputSchema property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInputSchema() {
return inputSchema;
}
/**
* Sets the value of the inputSchema property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInputSchema(String value) {
this.inputSchema = value;
}
/**
* Gets the value of the outputSchema property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOutputSchema() {
return outputSchema;
}
/**
* Sets the value of the outputSchema property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOutputSchema(String value) {
this.outputSchema = value;
}
public Schema withInputSchema(String value) {
setInputSchema(value);
return this;
}
public Schema withOutputSchema(String value) {
setOutputSchema(value);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy