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

org.jooq.util.jaxb.Configuration Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show 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: 2014.12.23 at 02:56:49 PM CET 
//


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="jdbc" type="{http://www.jooq.org/xsd/jooq-codegen-3.2.0.xsd}Jdbc"/>
 *         <element name="generator" type="{http://www.jooq.org/xsd/jooq-codegen-3.2.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 = 320L; @XmlElement(required = true) protected Jdbc jdbc; @XmlElement(required = true) protected Generator generator; /** * 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 withJdbc(Jdbc value) { setJdbc(value); return this; } public Configuration withGenerator(Generator value) { setGenerator(value); return this; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy