org.jooq.util.jaxb.Configuration 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: 2016.05.03 at 11:02:30 AM 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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="logging" type="{http://www.jooq.org/xsd/jooq-codegen-3.8.0.xsd}Logging" minOccurs="0"/>
* <element name="jdbc" type="{http://www.jooq.org/xsd/jooq-codegen-3.8.0.xsd}Jdbc" minOccurs="0"/>
* <element name="generator" type="{http://www.jooq.org/xsd/jooq-codegen-3.8.0.xsd}Generator"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
})
@XmlRootElement(name = "configuration")
@SuppressWarnings({
"all"
})
public class Configuration implements Serializable
{
private final static long serialVersionUID = 380L;
protected Logging logging;
protected Jdbc jdbc;
@XmlElement(required = true)
protected Generator generator;
/**
* Gets the value of the logging property.
*
* @return
* possible object is
* {@link Logging }
*
*/
public Logging getLogging() {
return logging;
}
/**
* Sets the value of the logging property.
*
* @param value
* allowed object is
* {@link Logging }
*
*/
public void setLogging(Logging value) {
this.logging = value;
}
/**
* Gets the value of the jdbc property.
*
* @return
* possible object is
* {@link Jdbc }
*
*/
public Jdbc getJdbc() {
return jdbc;
}
/**
* Sets the value of the jdbc property.
*
* @param value
* allowed object is
* {@link Jdbc }
*
*/
public void setJdbc(Jdbc value) {
this.jdbc = value;
}
/**
* Gets the value of the generator property.
*
* @return
* possible object is
* {@link Generator }
*
*/
public Generator getGenerator() {
return generator;
}
/**
* Sets the value of the generator property.
*
* @param value
* allowed object is
* {@link Generator }
*
*/
public void setGenerator(Generator value) {
this.generator = value;
}
public Configuration withLogging(Logging value) {
setLogging(value);
return this;
}
public Configuration withJdbc(Jdbc value) {
setJdbc(value);
return this;
}
public Configuration withGenerator(Generator value) {
setGenerator(value);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy