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: 2012.08.28 at 11:00:05 PM CEST
//
package org.jooq.util.jaxb;
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="navigationMethods" 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="jpaAnnotations" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="validationAnnotations" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Generate", propOrder = {
})
public class Generate {
@XmlElement(defaultValue = "false")
protected Boolean relations = false;
@XmlElement(defaultValue = "true")
protected Boolean navigationMethods = 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 jpaAnnotations = false;
@XmlElement(defaultValue = "false")
protected Boolean validationAnnotations = 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 navigationMethods property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isNavigationMethods() {
return navigationMethods;
}
/**
* Sets the value of the navigationMethods property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setNavigationMethods(Boolean value) {
this.navigationMethods = 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 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;
}
public Generate withRelations(Boolean value) {
setRelations(value);
return this;
}
public Generate withNavigationMethods(Boolean value) {
setNavigationMethods(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 withJpaAnnotations(Boolean value) {
setJpaAnnotations(value);
return this;
}
public Generate withValidationAnnotations(Boolean value) {
setValidationAnnotations(value);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy