org.jooq.util.jaxb.Jdbc 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: 2012.05.11 at 10:11:30 AM CEST
//
package org.jooq.util.jaxb;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Jdbc complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Jdbc">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="driver" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="user" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="properties" type="{http://www.jooq.org/xsd/jooq-codegen-2.3.0.xsd}Properties" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Jdbc", propOrder = {
})
public class Jdbc {
@XmlElement(required = true)
protected String driver;
@XmlElement(required = true)
protected String url;
protected String schema;
protected String user;
protected String password;
@XmlElementWrapper(name = "properties")
@XmlElement(name = "property")
protected List properties;
/**
* Gets the value of the driver property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDriver() {
return driver;
}
/**
* Sets the value of the driver property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDriver(String value) {
this.driver = value;
}
/**
* Gets the value of the url property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrl() {
return url;
}
/**
* Sets the value of the url property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrl(String value) {
this.url = value;
}
/**
* Gets the value of the schema property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSchema() {
return schema;
}
/**
* Sets the value of the schema property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSchema(String value) {
this.schema = value;
}
/**
* Gets the value of the user property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUser() {
return user;
}
/**
* Sets the value of the user property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUser(String value) {
this.user = value;
}
/**
* Gets the value of the password property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPassword() {
return password;
}
/**
* Sets the value of the password property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPassword(String value) {
this.password = value;
}
public List getProperties() {
if (properties == null) {
properties = new ArrayList();
}
return properties;
}
public void setProperties(List properties) {
this.properties = properties;
}
public Jdbc withDriver(String value) {
setDriver(value);
return this;
}
public Jdbc withUrl(String value) {
setUrl(value);
return this;
}
public Jdbc withSchema(String value) {
setSchema(value);
return this;
}
public Jdbc withUser(String value) {
setUser(value);
return this;
}
public Jdbc withPassword(String value) {
setPassword(value);
return this;
}
public Jdbc withProperties(Property... values) {
if (values!= null) {
for (Property value: values) {
getProperties().add(value);
}
}
return this;
}
public Jdbc withProperties(Collection values) {
if (values!= null) {
getProperties().addAll(values);
}
return this;
}
public Jdbc withProperties(List properties) {
setProperties(properties);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy