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

org.hibernate.boot.jaxb.mapping.spi.JaxbBasic Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2022.08.30 at 02:56:23 PM UTC 
//


package org.hibernate.boot.jaxb.mapping.spi;

import java.io.Serializable;
import jakarta.persistence.AccessType;
import jakarta.persistence.EnumType;
import jakarta.persistence.FetchType;
import jakarta.persistence.TemporalType;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 
 * 
 *                 @Target({METHOD, FIELD}) @Retention(RUNTIME)
 *                 public @interface Basic {
 *                 FetchType fetch() default EAGER;
 *                 boolean optional() default true;
 *                 }
 * 
 *             
 * 
 * 

Java class for basic complex type. * *

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

 * <complexType name="basic">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="column" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}column" minOccurs="0"/>
 *         <choice>
 *           <element name="lob" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}lob" minOccurs="0"/>
 *           <element name="temporal" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}temporal" minOccurs="0"/>
 *           <element name="enumerated" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}enumerated" minOccurs="0"/>
 *           <element name="convert" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}convert" minOccurs="0"/>
 *         </choice>
 *       </sequence>
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="fetch" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}fetch-type" />
 *       <attribute name="optional" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="access" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}access-type" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "basic", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm", propOrder = { "column", "lob", "temporal", "enumerated", "convert" }) public class JaxbBasic implements Serializable, PersistentAttribute { @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbColumn column; @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbLob lob; @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm", type = String.class) @XmlJavaTypeAdapter(Adapter10 .class) @XmlSchemaType(name = "token") protected TemporalType temporal; @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm", type = String.class) @XmlJavaTypeAdapter(Adapter4 .class) @XmlSchemaType(name = "token") protected EnumType enumerated; @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbConvert convert; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "fetch") @XmlJavaTypeAdapter(Adapter5 .class) protected FetchType fetch; @XmlAttribute(name = "optional") protected Boolean optional; @XmlAttribute(name = "access") @XmlJavaTypeAdapter(Adapter1 .class) protected AccessType access; /** * Gets the value of the column property. * * @return * possible object is * {@link JaxbColumn } * */ public JaxbColumn getColumn() { return column; } /** * Sets the value of the column property. * * @param value * allowed object is * {@link JaxbColumn } * */ public void setColumn(JaxbColumn value) { this.column = value; } /** * Gets the value of the lob property. * * @return * possible object is * {@link JaxbLob } * */ public JaxbLob getLob() { return lob; } /** * Sets the value of the lob property. * * @param value * allowed object is * {@link JaxbLob } * */ public void setLob(JaxbLob value) { this.lob = value; } /** * Gets the value of the temporal property. * * @return * possible object is * {@link String } * */ public TemporalType getTemporal() { return temporal; } /** * Sets the value of the temporal property. * * @param value * allowed object is * {@link String } * */ public void setTemporal(TemporalType value) { this.temporal = value; } /** * Gets the value of the enumerated property. * * @return * possible object is * {@link String } * */ public EnumType getEnumerated() { return enumerated; } /** * Sets the value of the enumerated property. * * @param value * allowed object is * {@link String } * */ public void setEnumerated(EnumType value) { this.enumerated = value; } /** * Gets the value of the convert property. * * @return * possible object is * {@link JaxbConvert } * */ public JaxbConvert getConvert() { return convert; } /** * Sets the value of the convert property. * * @param value * allowed object is * {@link JaxbConvert } * */ public void setConvert(JaxbConvert value) { this.convert = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the fetch property. * * @return * possible object is * {@link String } * */ public FetchType getFetch() { return fetch; } /** * Sets the value of the fetch property. * * @param value * allowed object is * {@link String } * */ public void setFetch(FetchType value) { this.fetch = value; } /** * Gets the value of the optional property. * * @return * possible object is * {@link Boolean } * */ public Boolean isOptional() { return optional; } /** * Sets the value of the optional property. * * @param value * allowed object is * {@link Boolean } * */ public void setOptional(Boolean value) { this.optional = value; } /** * Gets the value of the access property. * * @return * possible object is * {@link String } * */ public AccessType getAccess() { return access; } /** * Sets the value of the access property. * * @param value * allowed object is * {@link String } * */ public void setAccess(AccessType value) { this.access = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy