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

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

There is a newer version: 7.0.0.Beta3
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({TYPE}) @Retention(RUNTIME)
 *         public @interface SqlResultSetMapping {
 *           String name();
 *           EntityResult[] entities() default {};
 *           ConstructorResult[] classes() default{};
 *           ColumnResult[] columns() default {};
 *         }
 * 
 *       
 * 
 * 

Java class for sql-result-set-mapping complex type. * *

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

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "sql-result-set-mapping", namespace = "https://jakarta.ee/xml/ns/persistence/orm", propOrder = { "description", "entityResult", "constructorResult", "columnResult" }) public class SqlResultSetMapping { @XmlElement(namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected String description; @XmlElement(name = "entity-result", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected List entityResult; @XmlElement(name = "constructor-result", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected List constructorResult; @XmlElement(name = "column-result", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected List columnResult; @XmlAttribute(name = "name", required = true) protected String name; /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the entityResult 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 entityResult property. * *

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

     *    getEntityResult().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link EntityResult } * * * @return * The value of the entityResult property. */ public List getEntityResult() { if (entityResult == null) { entityResult = new ArrayList<>(); } return this.entityResult; } /** * Gets the value of the constructorResult 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 constructorResult property. * *

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

     *    getConstructorResult().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ConstructorResult } * * * @return * The value of the constructorResult property. */ public List getConstructorResult() { if (constructorResult == null) { constructorResult = new ArrayList<>(); } return this.constructorResult; } /** * Gets the value of the columnResult 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 columnResult property. * *

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

     *    getColumnResult().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ColumnResult } * * * @return * The value of the columnResult property. */ public List getColumnResult() { if (columnResult == null) { columnResult = new ArrayList<>(); } return this.columnResult; } /** * 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; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy