org.jooq.util.jaxb.Generate 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.11.21 at 05:24:18 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.XmlType;
/**
* Java class for Generate complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Generate">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="relations" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="deprecated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="instanceFields" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="generatedAnnotation" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="records" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="pojos" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="pojosEqualsAndHashCode" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="immutablePojos" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="interfaces" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="daos" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="jpaAnnotations" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="validationAnnotations" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="globalObjectReferences" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="fluentSetters" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Generate", propOrder = {
})
@SuppressWarnings({
"all"
})
public class Generate implements Serializable
{
private final static long serialVersionUID = 350L;
@XmlElement(defaultValue = "true")
protected Boolean relations = true;
@XmlElement(defaultValue = "true")
protected Boolean deprecated = true;
@XmlElement(defaultValue = "true")
protected Boolean instanceFields = true;
@XmlElement(defaultValue = "true")
protected Boolean generatedAnnotation = true;
@XmlElement(defaultValue = "true")
protected Boolean records = true;
@XmlElement(defaultValue = "false")
protected Boolean pojos = false;
@XmlElement(defaultValue = "false")
protected Boolean pojosEqualsAndHashCode = false;
@XmlElement(defaultValue = "false")
protected Boolean immutablePojos = false;
@XmlElement(defaultValue = "false")
protected Boolean interfaces = false;
@XmlElement(defaultValue = "false")
protected Boolean daos = false;
@XmlElement(defaultValue = "false")
protected Boolean jpaAnnotations = false;
@XmlElement(defaultValue = "false")
protected Boolean validationAnnotations = false;
@XmlElement(defaultValue = "true")
protected Boolean globalObjectReferences = true;
@XmlElement(defaultValue = "false")
protected Boolean fluentSetters = false;
/**
* Gets the value of the relations property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isRelations() {
return relations;
}
/**
* Sets the value of the relations property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setRelations(Boolean value) {
this.relations = value;
}
/**
* Gets the value of the deprecated property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDeprecated() {
return deprecated;
}
/**
* Sets the value of the deprecated property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDeprecated(Boolean value) {
this.deprecated = value;
}
/**
* Gets the value of the instanceFields property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isInstanceFields() {
return instanceFields;
}
/**
* Sets the value of the instanceFields property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setInstanceFields(Boolean value) {
this.instanceFields = value;
}
/**
* Gets the value of the generatedAnnotation property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isGeneratedAnnotation() {
return generatedAnnotation;
}
/**
* Sets the value of the generatedAnnotation property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setGeneratedAnnotation(Boolean value) {
this.generatedAnnotation = value;
}
/**
* Gets the value of the records property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isRecords() {
return records;
}
/**
* Sets the value of the records property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setRecords(Boolean value) {
this.records = value;
}
/**
* Gets the value of the pojos property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPojos() {
return pojos;
}
/**
* Sets the value of the pojos property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPojos(Boolean value) {
this.pojos = value;
}
/**
* Gets the value of the pojosEqualsAndHashCode property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPojosEqualsAndHashCode() {
return pojosEqualsAndHashCode;
}
/**
* Sets the value of the pojosEqualsAndHashCode property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPojosEqualsAndHashCode(Boolean value) {
this.pojosEqualsAndHashCode = value;
}
/**
* Gets the value of the immutablePojos property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isImmutablePojos() {
return immutablePojos;
}
/**
* Sets the value of the immutablePojos property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setImmutablePojos(Boolean value) {
this.immutablePojos = value;
}
/**
* Gets the value of the interfaces property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isInterfaces() {
return interfaces;
}
/**
* Sets the value of the interfaces property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setInterfaces(Boolean value) {
this.interfaces = value;
}
/**
* Gets the value of the daos property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDaos() {
return daos;
}
/**
* Sets the value of the daos property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDaos(Boolean value) {
this.daos = value;
}
/**
* Gets the value of the jpaAnnotations property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isJpaAnnotations() {
return jpaAnnotations;
}
/**
* Sets the value of the jpaAnnotations property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setJpaAnnotations(Boolean value) {
this.jpaAnnotations = value;
}
/**
* Gets the value of the validationAnnotations property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isValidationAnnotations() {
return validationAnnotations;
}
/**
* Sets the value of the validationAnnotations property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setValidationAnnotations(Boolean value) {
this.validationAnnotations = value;
}
/**
* Gets the value of the globalObjectReferences property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isGlobalObjectReferences() {
return globalObjectReferences;
}
/**
* Sets the value of the globalObjectReferences property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setGlobalObjectReferences(Boolean value) {
this.globalObjectReferences = value;
}
/**
* Gets the value of the fluentSetters property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFluentSetters() {
return fluentSetters;
}
/**
* Sets the value of the fluentSetters property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFluentSetters(Boolean value) {
this.fluentSetters = value;
}
public Generate withRelations(Boolean value) {
setRelations(value);
return this;
}
public Generate withDeprecated(Boolean value) {
setDeprecated(value);
return this;
}
public Generate withInstanceFields(Boolean value) {
setInstanceFields(value);
return this;
}
public Generate withGeneratedAnnotation(Boolean value) {
setGeneratedAnnotation(value);
return this;
}
public Generate withRecords(Boolean value) {
setRecords(value);
return this;
}
public Generate withPojos(Boolean value) {
setPojos(value);
return this;
}
public Generate withPojosEqualsAndHashCode(Boolean value) {
setPojosEqualsAndHashCode(value);
return this;
}
public Generate withImmutablePojos(Boolean value) {
setImmutablePojos(value);
return this;
}
public Generate withInterfaces(Boolean value) {
setInterfaces(value);
return this;
}
public Generate withDaos(Boolean value) {
setDaos(value);
return this;
}
public Generate withJpaAnnotations(Boolean value) {
setJpaAnnotations(value);
return this;
}
public Generate withValidationAnnotations(Boolean value) {
setValidationAnnotations(value);
return this;
}
public Generate withGlobalObjectReferences(Boolean value) {
setGlobalObjectReferences(value);
return this;
}
public Generate withFluentSetters(Boolean value) {
setFluentSetters(value);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy