Package org.hibernate.boot.jaxb.hbm.spi
Class JaxbHbmAuxiliaryDatabaseObjectType
- java.lang.Object
-
- org.hibernate.boot.jaxb.hbm.spi.JaxbHbmAuxiliaryDatabaseObjectType
-
- All Implemented Interfaces:
java.io.Serializable
public class JaxbHbmAuxiliaryDatabaseObjectType extends java.lang.Object implements java.io.Serializable
Java class for AuxiliaryDatabaseObjectType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AuxiliaryDatabaseObjectType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice> <element name="definition"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="class" use="required" type="{http://www.hibernate.org/xsd/orm/hbm}ClassNameType" /> </restriction> </complexContent> </complexType> </element> <sequence> <element name="create" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="drop" type="{http://www.w3.org/2001/XMLSchema}string"/> </sequence> </choice> <element name="dialect-scope" type="{http://www.hibernate.org/xsd/orm/hbm}DialectScopeType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
JaxbHbmAuxiliaryDatabaseObjectType.JaxbHbmDefinition
Java class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
create
protected JaxbHbmAuxiliaryDatabaseObjectType.JaxbHbmDefinition
definition
protected java.util.List<JaxbHbmDialectScopeType>
dialectScope
protected java.lang.String
drop
-
Constructor Summary
Constructors Constructor Description JaxbHbmAuxiliaryDatabaseObjectType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCreate()
Gets the value of the create property.JaxbHbmAuxiliaryDatabaseObjectType.JaxbHbmDefinition
getDefinition()
Gets the value of the definition property.java.util.List<JaxbHbmDialectScopeType>
getDialectScope()
Gets the value of the dialectScope property.java.lang.String
getDrop()
Gets the value of the drop property.void
setCreate(java.lang.String value)
Sets the value of the create property.void
setDefinition(JaxbHbmAuxiliaryDatabaseObjectType.JaxbHbmDefinition value)
Sets the value of the definition property.void
setDrop(java.lang.String value)
Sets the value of the drop property.
-
-
-
Field Detail
-
definition
protected JaxbHbmAuxiliaryDatabaseObjectType.JaxbHbmDefinition definition
-
create
protected java.lang.String create
-
drop
protected java.lang.String drop
-
dialectScope
protected java.util.List<JaxbHbmDialectScopeType> dialectScope
-
-
Method Detail
-
getDefinition
public JaxbHbmAuxiliaryDatabaseObjectType.JaxbHbmDefinition getDefinition()
Gets the value of the definition property.- Returns:
- possible object is
JaxbHbmAuxiliaryDatabaseObjectType.JaxbHbmDefinition
-
setDefinition
public void setDefinition(JaxbHbmAuxiliaryDatabaseObjectType.JaxbHbmDefinition value)
Sets the value of the definition property.- Parameters:
value
- allowed object isJaxbHbmAuxiliaryDatabaseObjectType.JaxbHbmDefinition
-
getCreate
public java.lang.String getCreate()
Gets the value of the create property.- Returns:
- possible object is
String
-
setCreate
public void setCreate(java.lang.String value)
Sets the value of the create property.- Parameters:
value
- allowed object isString
-
getDrop
public java.lang.String getDrop()
Gets the value of the drop property.- Returns:
- possible object is
String
-
setDrop
public void setDrop(java.lang.String value)
Sets the value of the drop property.- Parameters:
value
- allowed object isString
-
getDialectScope
public java.util.List<JaxbHbmDialectScopeType> getDialectScope()
Gets the value of the dialectScope 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 dialectScope property.For example, to add a new item, do as follows:
getDialectScope().add(newItem);
Objects of the following type(s) are allowed in the list
JaxbHbmDialectScopeType
-
-