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

org.hibernate.boot.jaxb.hbm.spi.JaxbHbmResultSetMappingType Maven / Gradle / Ivy

There is a newer version: 6.5.0.CR2
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: 2019.10.08 at 09:56:04 AM BST 
//


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

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
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.XmlElements;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *                 The resultset element declares a named resultset mapping definition for SQL queries
 *             
 * 
 * 

Java class for ResultSetMappingType complex type. * *

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

 * <complexType name="ResultSetMappingType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice maxOccurs="unbounded" minOccurs="0">
 *         <group ref="{http://www.hibernate.org/xsd/orm/hbm}NativeQueryReturnGroup"/>
 *       </choice>
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResultSetMappingType", propOrder = { "valueMappingSources" }) public class JaxbHbmResultSetMappingType implements Serializable, ResultSetMappingBindingDefinition { @XmlElements({ @XmlElement(name = "return-scalar", type = JaxbHbmNativeQueryScalarReturnType.class), @XmlElement(name = "return", type = JaxbHbmNativeQueryReturnType.class), @XmlElement(name = "return-join", type = JaxbHbmNativeQueryJoinReturnType.class), @XmlElement(name = "load-collection", type = JaxbHbmNativeQueryCollectionLoadReturnType.class) }) protected List valueMappingSources; @XmlAttribute(name = "name", required = true) protected String name; /** * Gets the value of the valueMappingSources 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 valueMappingSources property. * *

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

     *    getValueMappingSources().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JaxbHbmNativeQueryScalarReturnType } * {@link JaxbHbmNativeQueryReturnType } * {@link JaxbHbmNativeQueryJoinReturnType } * {@link JaxbHbmNativeQueryCollectionLoadReturnType } * * */ public List getValueMappingSources() { if (valueMappingSources == null) { valueMappingSources = new ArrayList(); } return this.valueMappingSources; } /** * 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 - 2024 Weber Informatics LLC | Privacy Policy