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

org.hibernate.jpamodelgen.xml.jaxb.ManyToOne Maven / Gradle / Ivy

There is a newer version: 7.0.0.Beta2
Show newest version

package org.hibernate.jpamodelgen.xml.jaxb;

import java.util.ArrayList;
import java.util.List;
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.XmlType;


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

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

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

{@code
 * 
 *   
 *     
 *       
 *         
 *           
 *             
 *             
 *           
 *           
 *         
 *         
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "many-to-one", namespace = "https://jakarta.ee/xml/ns/persistence/orm", propOrder = { "joinColumn", "foreignKey", "joinTable", "cascade" }) public class ManyToOne { @XmlElement(name = "join-column", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected List joinColumn; @XmlElement(name = "foreign-key", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected ForeignKey foreignKey; @XmlElement(name = "join-table", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected JoinTable joinTable; @XmlElement(namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected CascadeType cascade; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "target-entity") protected String targetEntity; @XmlAttribute(name = "fetch") protected FetchType fetch; @XmlAttribute(name = "optional") protected Boolean optional; @XmlAttribute(name = "access") protected AccessType access; @XmlAttribute(name = "maps-id") protected String mapsId; @XmlAttribute(name = "id") protected Boolean id; /** * 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 Jakarta XML Binding object. * This is why there is not a {@code 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 JoinColumn } * * * @return * The value of the joinColumn property. */ public List getJoinColumn() { if (joinColumn == null) { joinColumn = new ArrayList<>(); } return this.joinColumn; } /** * Gets the value of the foreignKey property. * * @return * possible object is * {@link ForeignKey } * */ public ForeignKey getForeignKey() { return foreignKey; } /** * Sets the value of the foreignKey property. * * @param value * allowed object is * {@link ForeignKey } * */ public void setForeignKey(ForeignKey value) { this.foreignKey = value; } /** * Gets the value of the joinTable property. * * @return * possible object is * {@link JoinTable } * */ public JoinTable getJoinTable() { return joinTable; } /** * Sets the value of the joinTable property. * * @param value * allowed object is * {@link JoinTable } * */ public void setJoinTable(JoinTable value) { this.joinTable = value; } /** * Gets the value of the cascade property. * * @return * possible object is * {@link CascadeType } * */ public CascadeType getCascade() { return cascade; } /** * Sets the value of the cascade property. * * @param value * allowed object is * {@link CascadeType } * */ public void setCascade(CascadeType 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 FetchType } * */ public FetchType getFetch() { return fetch; } /** * Sets the value of the fetch property. * * @param value * allowed object is * {@link FetchType } * */ 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 AccessType } * */ public AccessType getAccess() { return access; } /** * Sets the value of the access property. * * @param value * allowed object is * {@link AccessType } * */ public void setAccess(AccessType value) { this.access = 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 - 2025 Weber Informatics LLC | Privacy Policy