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

org.hibernate.boot.jaxb.mapping.spi.JaxbOneToOne 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, 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: 2021.12.16 at 08:34:01 AM UTC 
//


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

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.AccessType;
import javax.persistence.FetchType;
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.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 
 * 
 *                 @Target({METHOD, FIELD}) @Retention(RUNTIME)
 *                 public @interface OneToOne {
 *                 Class targetEntity() default void.class;
 *                 CascadeType[] cascade() default {};
 *                 FetchType fetch() default EAGER;
 *                 boolean optional() default true;
 *                 String mappedBy() default "";
 *                 boolean orphanRemoval() default false;
 *                 }
 * 
 *             
 * 
 * 

Java class for one-to-one complex type. * *

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

 * <complexType name="one-to-one">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <choice>
 *           <sequence>
 *             <element name="primary-key-join-column" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}primary-key-join-column" maxOccurs="unbounded" minOccurs="0"/>
 *             <element name="primary-key-foreign-key" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}foreign-key" minOccurs="0"/>
 *           </sequence>
 *           <sequence>
 *             <element name="join-column" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}join-column" maxOccurs="unbounded" minOccurs="0"/>
 *             <element name="foreign-key" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}foreign-key" minOccurs="0"/>
 *           </sequence>
 *           <element name="join-table" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}join-table" minOccurs="0"/>
 *         </choice>
 *         <element name="cascade" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}cascade-type" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="target-entity" 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" />
 *       <attribute name="mapped-by" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="orphan-removal" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="maps-id" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "one-to-one", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm", propOrder = { "primaryKeyJoinColumn", "primaryKeyForeignKey", "joinColumn", "foreignKey", "joinTable", "cascade" }) public class JaxbOneToOne implements Serializable, AssociationAttribute, FetchableAttribute, PersistentAttribute { @XmlElement(name = "primary-key-join-column", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected List primaryKeyJoinColumn; @XmlElement(name = "primary-key-foreign-key", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbForeignKey primaryKeyForeignKey; @XmlElement(name = "join-column", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected List joinColumn; @XmlElement(name = "foreign-key", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbForeignKey foreignKey; @XmlElement(name = "join-table", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbJoinTable joinTable; @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbCascadeType cascade; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "target-entity") protected String targetEntity; @XmlAttribute(name = "fetch") @XmlJavaTypeAdapter(Adapter5 .class) protected FetchType fetch; @XmlAttribute(name = "optional") protected Boolean optional; @XmlAttribute(name = "access") @XmlJavaTypeAdapter(Adapter1 .class) protected AccessType access; @XmlAttribute(name = "mapped-by") protected String mappedBy; @XmlAttribute(name = "orphan-removal") protected Boolean orphanRemoval; @XmlAttribute(name = "maps-id") protected String mapsId; @XmlAttribute(name = "id") protected Boolean id; /** * Gets the value of the primaryKeyJoinColumn property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the primaryKeyJoinColumn property. * *

* For example, to add a new item, do as follows: *

     *    getPrimaryKeyJoinColumn().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JaxbPrimaryKeyJoinColumn } * * */ public List getPrimaryKeyJoinColumn() { if (primaryKeyJoinColumn == null) { primaryKeyJoinColumn = new ArrayList(); } return this.primaryKeyJoinColumn; } /** * Gets the value of the primaryKeyForeignKey property. * * @return * possible object is * {@link JaxbForeignKey } * */ public JaxbForeignKey getPrimaryKeyForeignKey() { return primaryKeyForeignKey; } /** * Sets the value of the primaryKeyForeignKey property. * * @param value * allowed object is * {@link JaxbForeignKey } * */ public void setPrimaryKeyForeignKey(JaxbForeignKey value) { this.primaryKeyForeignKey = value; } /** * Gets the value of the joinColumn property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the joinColumn property. * *

* For example, to add a new item, do as follows: *

     *    getJoinColumn().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JaxbJoinColumn } * * */ public List getJoinColumn() { if (joinColumn == null) { joinColumn = new ArrayList(); } return this.joinColumn; } /** * Gets the value of the foreignKey property. * * @return * possible object is * {@link JaxbForeignKey } * */ public JaxbForeignKey getForeignKey() { return foreignKey; } /** * Sets the value of the foreignKey property. * * @param value * allowed object is * {@link JaxbForeignKey } * */ public void setForeignKey(JaxbForeignKey value) { this.foreignKey = value; } /** * Gets the value of the joinTable property. * * @return * possible object is * {@link JaxbJoinTable } * */ public JaxbJoinTable getJoinTable() { return joinTable; } /** * Sets the value of the joinTable property. * * @param value * allowed object is * {@link JaxbJoinTable } * */ public void setJoinTable(JaxbJoinTable value) { this.joinTable = value; } /** * Gets the value of the cascade property. * * @return * possible object is * {@link JaxbCascadeType } * */ public JaxbCascadeType getCascade() { return cascade; } /** * Sets the value of the cascade property. * * @param value * allowed object is * {@link JaxbCascadeType } * */ public void setCascade(JaxbCascadeType value) { this.cascade = 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 targetEntity property. * * @return * possible object is * {@link String } * */ public String getTargetEntity() { return targetEntity; } /** * Sets the value of the targetEntity property. * * @param value * allowed object is * {@link String } * */ public void setTargetEntity(String value) { this.targetEntity = 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; } /** * Gets the value of the mappedBy property. * * @return * possible object is * {@link String } * */ public String getMappedBy() { return mappedBy; } /** * Sets the value of the mappedBy property. * * @param value * allowed object is * {@link String } * */ public void setMappedBy(String value) { this.mappedBy = value; } /** * Gets the value of the orphanRemoval property. * * @return * possible object is * {@link Boolean } * */ public Boolean isOrphanRemoval() { return orphanRemoval; } /** * Sets the value of the orphanRemoval property. * * @param value * allowed object is * {@link Boolean } * */ public void setOrphanRemoval(Boolean value) { this.orphanRemoval = value; } /** * Gets the value of the mapsId property. * * @return * possible object is * {@link String } * */ public String getMapsId() { return mapsId; } /** * Sets the value of the mapsId property. * * @param value * allowed object is * {@link String } * */ public void setMapsId(String value) { this.mapsId = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link Boolean } * */ public Boolean isId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link Boolean } * */ public void setId(Boolean value) { this.id = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy