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

io.hawt.dozer.schema.Field 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: 2015.11.23 at 03:51:31 AM EST 
//


package io.hawt.dozer.schema;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
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">
 *       <sequence>
 *         <element ref="{http://dozer.sourceforge.net}a"/>
 *         <element ref="{http://dozer.sourceforge.net}b"/>
 *         <element ref="{http://dozer.sourceforge.net}a-hint" minOccurs="0"/>
 *         <element ref="{http://dozer.sourceforge.net}b-hint" minOccurs="0"/>
 *         <element ref="{http://dozer.sourceforge.net}a-deep-index-hint" minOccurs="0"/>
 *         <element ref="{http://dozer.sourceforge.net}b-deep-index-hint" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="relationship-type" type="{http://dozer.sourceforge.net}relationship" />
 *       <attribute name="remove-orphans" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="type" type="{http://dozer.sourceforge.net}type" />
 *       <attribute name="map-id" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="copy-by-reference" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="custom-converter" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="custom-converter-id" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="custom-converter-param" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "a", "b", "aHint", "bHint", "aDeepIndexHint", "bDeepIndexHint" }) @XmlRootElement(name = "field") public class Field { @XmlElement(required = true) protected FieldDefinition a; @XmlElement(required = true) protected FieldDefinition b; @XmlElement(name = "a-hint") protected String aHint; @XmlElement(name = "b-hint") protected String bHint; @XmlElement(name = "a-deep-index-hint") protected String aDeepIndexHint; @XmlElement(name = "b-deep-index-hint") protected String bDeepIndexHint; @XmlAttribute(name = "relationship-type") protected Relationship relationshipType; @XmlAttribute(name = "remove-orphans") protected Boolean removeOrphans; @XmlAttribute(name = "type") protected Type type; @XmlAttribute(name = "map-id") protected String mapId; @XmlAttribute(name = "copy-by-reference") protected Boolean copyByReference; @XmlAttribute(name = "custom-converter") protected String customConverter; @XmlAttribute(name = "custom-converter-id") protected String customConverterId; @XmlAttribute(name = "custom-converter-param") protected String customConverterParam; /** * Gets the value of the a property. * * @return * possible object is * {@link FieldDefinition } * */ public FieldDefinition getA() { return a; } /** * Sets the value of the a property. * * @param value * allowed object is * {@link FieldDefinition } * */ public void setA(FieldDefinition value) { this.a = value; } /** * Gets the value of the b property. * * @return * possible object is * {@link FieldDefinition } * */ public FieldDefinition getB() { return b; } /** * Sets the value of the b property. * * @param value * allowed object is * {@link FieldDefinition } * */ public void setB(FieldDefinition value) { this.b = value; } /** * Gets the value of the aHint property. * * @return * possible object is * {@link String } * */ public String getAHint() { return aHint; } /** * Sets the value of the aHint property. * * @param value * allowed object is * {@link String } * */ public void setAHint(String value) { this.aHint = value; } /** * Gets the value of the bHint property. * * @return * possible object is * {@link String } * */ public String getBHint() { return bHint; } /** * Sets the value of the bHint property. * * @param value * allowed object is * {@link String } * */ public void setBHint(String value) { this.bHint = value; } /** * Gets the value of the aDeepIndexHint property. * * @return * possible object is * {@link String } * */ public String getADeepIndexHint() { return aDeepIndexHint; } /** * Sets the value of the aDeepIndexHint property. * * @param value * allowed object is * {@link String } * */ public void setADeepIndexHint(String value) { this.aDeepIndexHint = value; } /** * Gets the value of the bDeepIndexHint property. * * @return * possible object is * {@link String } * */ public String getBDeepIndexHint() { return bDeepIndexHint; } /** * Sets the value of the bDeepIndexHint property. * * @param value * allowed object is * {@link String } * */ public void setBDeepIndexHint(String value) { this.bDeepIndexHint = value; } /** * Gets the value of the relationshipType property. * * @return * possible object is * {@link Relationship } * */ public Relationship getRelationshipType() { return relationshipType; } /** * Sets the value of the relationshipType property. * * @param value * allowed object is * {@link Relationship } * */ public void setRelationshipType(Relationship value) { this.relationshipType = value; } /** * Gets the value of the removeOrphans property. * * @return * possible object is * {@link Boolean } * */ public Boolean isRemoveOrphans() { return removeOrphans; } /** * Sets the value of the removeOrphans property. * * @param value * allowed object is * {@link Boolean } * */ public void setRemoveOrphans(Boolean value) { this.removeOrphans = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link Type } * */ public Type getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link Type } * */ public void setType(Type value) { this.type = value; } /** * Gets the value of the mapId property. * * @return * possible object is * {@link String } * */ public String getMapId() { return mapId; } /** * Sets the value of the mapId property. * * @param value * allowed object is * {@link String } * */ public void setMapId(String value) { this.mapId = value; } /** * Gets the value of the copyByReference property. * * @return * possible object is * {@link Boolean } * */ public Boolean isCopyByReference() { return copyByReference; } /** * Sets the value of the copyByReference property. * * @param value * allowed object is * {@link Boolean } * */ public void setCopyByReference(Boolean value) { this.copyByReference = value; } /** * Gets the value of the customConverter property. * * @return * possible object is * {@link String } * */ public String getCustomConverter() { return customConverter; } /** * Sets the value of the customConverter property. * * @param value * allowed object is * {@link String } * */ public void setCustomConverter(String value) { this.customConverter = value; } /** * Gets the value of the customConverterId property. * * @return * possible object is * {@link String } * */ public String getCustomConverterId() { return customConverterId; } /** * Sets the value of the customConverterId property. * * @param value * allowed object is * {@link String } * */ public void setCustomConverterId(String value) { this.customConverterId = value; } /** * Gets the value of the customConverterParam property. * * @return * possible object is * {@link String } * */ public String getCustomConverterParam() { return customConverterParam; } /** * Sets the value of the customConverterParam property. * * @param value * allowed object is * {@link String } * */ public void setCustomConverterParam(String value) { this.customConverterParam = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy