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

org.hibernate.boot.jaxb.hbm.spi.JaxbHbmListIndexType 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.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2019.02.25 at 10:44:24 PM CET 
//


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

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ListIndexType complex type. * *

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

 * <complexType name="ListIndexType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="column" type="{http://www.hibernate.org/xsd/orm/hbm}ColumnType" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="base" type="{http://www.w3.org/2001/XMLSchema}string" default="0" />
 *       <attribute name="column" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ListIndexType", propOrder = { "column" }) public class JaxbHbmListIndexType implements Serializable { protected JaxbHbmColumnType column; @XmlAttribute(name = "base") protected String base; @XmlAttribute(name = "column") protected String columnAttribute; /** * Gets the value of the column property. * * @return * possible object is * {@link JaxbHbmColumnType } * */ public JaxbHbmColumnType getColumn() { return column; } /** * Sets the value of the column property. * * @param value * allowed object is * {@link JaxbHbmColumnType } * */ public void setColumn(JaxbHbmColumnType value) { this.column = value; } /** * Gets the value of the base property. * * @return * possible object is * {@link String } * */ public String getBase() { if (base == null) { return "0"; } else { return base; } } /** * Sets the value of the base property. * * @param value * allowed object is * {@link String } * */ public void setBase(String value) { this.base = value; } /** * Gets the value of the columnAttribute property. * * @return * possible object is * {@link String } * */ public String getColumnAttribute() { return columnAttribute; } /** * Sets the value of the columnAttribute property. * * @param value * allowed object is * {@link String } * */ public void setColumnAttribute(String value) { this.columnAttribute = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy