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

org.hibernate.internal.jaxb.mapping.hbm.JaxbTuplizerElement Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-520 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.01.06 at 12:10:24 PM PST 
//


package org.hibernate.internal.jaxb.mapping.hbm;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for tuplizer-element complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="tuplizer-element">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="entity-mode">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}token">
 *             <enumeration value="dom4j"/>
 *             <enumeration value="dynamic-map"/>
 *             <enumeration value="pojo"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tuplizer-element") public class JaxbTuplizerElement { @XmlAttribute(name = "class", required = true) protected String clazz; @XmlAttribute(name = "entity-mode") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String entityMode; /** * Gets the value of the clazz property. * * @return * possible object is * {@link String } * */ public String getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @param value * allowed object is * {@link String } * */ public void setClazz(String value) { this.clazz = value; } /** * Gets the value of the entityMode property. * * @return * possible object is * {@link String } * */ public String getEntityMode() { return entityMode; } /** * Sets the value of the entityMode property. * * @param value * allowed object is * {@link String } * */ public void setEntityMode(String value) { this.entityMode = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy