Package org.hibernate.boot.jaxb.hbm.spi
Class JaxbHbmSecondaryTableType
- java.lang.Object
-
- org.hibernate.boot.jaxb.hbm.spi.JaxbHbmSecondaryTableType
-
- All Implemented Interfaces:
Serializable
,TableInformationContainer
public class JaxbHbmSecondaryTableType extends Object implements Serializable, TableInformationContainer
A join allows some properties of a class to be persisted to a second tableJava class for SecondaryTableType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SecondaryTableType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="subselect" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="key" type="{http://www.hibernate.org/xsd/orm/hbm}key-type"/> <choice maxOccurs="unbounded" minOccurs="0"> <element name="property" type="{http://www.hibernate.org/xsd/orm/hbm}BasicAttributeType"/> <element name="many-to-one" type="{http://www.hibernate.org/xsd/orm/hbm}ManyToOneType"/> <element name="component" type="{http://www.hibernate.org/xsd/orm/hbm}CompositeAttributeType"/> <element name="dynamic-component" type="{http://www.hibernate.org/xsd/orm/hbm}dynamic-component-type"/> <element name="any" type="{http://www.hibernate.org/xsd/orm/hbm}AnyAssociationType"/> </choice> <group ref="{http://www.hibernate.org/xsd/orm/hbm}CustomSqlDmlGroup"/> </sequence> <attGroup ref="{http://www.hibernate.org/xsd/orm/hbm}table-information-group"/> <attribute name="fetch" type="{http://www.hibernate.org/xsd/orm/hbm}FetchStyleEnum" default="join" /> <attribute name="inverse" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> <attribute name="optional" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Serializable>
attributes
protected String
catalog
protected String
comment
protected JaxbHbmFetchStyleEnum
fetch
protected Boolean
inverse
protected JaxbHbmKeyType
key
protected Boolean
optional
protected String
schema
protected JaxbHbmCustomSqlDmlType
sqlDelete
protected JaxbHbmCustomSqlDmlType
sqlInsert
protected JaxbHbmCustomSqlDmlType
sqlUpdate
protected String
subselect
protected String
subselectAttribute
protected String
table
-
Constructor Summary
Constructors Constructor Description JaxbHbmSecondaryTableType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Serializable>
getAttributes()
Gets the value of the attributes property.String
getCatalog()
Gets the value of the catalog property.String
getComment()
Gets the value of the comment property.JaxbHbmFetchStyleEnum
getFetch()
Gets the value of the fetch property.JaxbHbmKeyType
getKey()
Gets the value of the key property.String
getSchema()
Gets the value of the schema property.JaxbHbmCustomSqlDmlType
getSqlDelete()
Gets the value of the sqlDelete property.JaxbHbmCustomSqlDmlType
getSqlInsert()
Gets the value of the sqlInsert property.JaxbHbmCustomSqlDmlType
getSqlUpdate()
Gets the value of the sqlUpdate property.String
getSubselect()
Gets the value of the subselect property.String
getSubselectAttribute()
Gets the value of the subselectAttribute property.String
getTable()
Gets the value of the table property.boolean
isInverse()
Gets the value of the inverse property.boolean
isOptional()
Gets the value of the optional property.void
setCatalog(String value)
Sets the value of the catalog property.void
setComment(String value)
Sets the value of the comment property.void
setFetch(JaxbHbmFetchStyleEnum value)
Sets the value of the fetch property.void
setInverse(Boolean value)
Sets the value of the inverse property.void
setKey(JaxbHbmKeyType value)
Sets the value of the key property.void
setOptional(Boolean value)
Sets the value of the optional property.void
setSchema(String value)
Sets the value of the schema property.void
setSqlDelete(JaxbHbmCustomSqlDmlType value)
Sets the value of the sqlDelete property.void
setSqlInsert(JaxbHbmCustomSqlDmlType value)
Sets the value of the sqlInsert property.void
setSqlUpdate(JaxbHbmCustomSqlDmlType value)
Sets the value of the sqlUpdate property.void
setSubselect(String value)
Sets the value of the subselect property.void
setSubselectAttribute(String value)
Sets the value of the subselectAttribute property.void
setTable(String value)
Sets the value of the table property.
-
-
-
Field Detail
-
subselect
protected String subselect
-
comment
protected String comment
-
key
protected JaxbHbmKeyType key
-
attributes
protected List<Serializable> attributes
-
sqlInsert
protected JaxbHbmCustomSqlDmlType sqlInsert
-
sqlUpdate
protected JaxbHbmCustomSqlDmlType sqlUpdate
-
sqlDelete
protected JaxbHbmCustomSqlDmlType sqlDelete
-
fetch
protected JaxbHbmFetchStyleEnum fetch
-
inverse
protected Boolean inverse
-
optional
protected Boolean optional
-
schema
protected String schema
-
catalog
protected String catalog
-
table
protected String table
-
subselectAttribute
protected String subselectAttribute
-
-
Method Detail
-
getSubselect
public String getSubselect()
Gets the value of the subselect property.- Specified by:
getSubselect
in interfaceTableInformationContainer
- Returns:
- possible object is
String
-
setSubselect
public void setSubselect(String value)
Sets the value of the subselect property.- Parameters:
value
- allowed object isString
-
getComment
public String getComment()
Gets the value of the comment property.- Returns:
- possible object is
String
-
setComment
public void setComment(String value)
Sets the value of the comment property.- Parameters:
value
- allowed object isString
-
getKey
public JaxbHbmKeyType getKey()
Gets the value of the key property.- Returns:
- possible object is
JaxbHbmKeyType
-
setKey
public void setKey(JaxbHbmKeyType value)
Sets the value of the key property.- Parameters:
value
- allowed object isJaxbHbmKeyType
-
getAttributes
public List<Serializable> getAttributes()
Gets the value of the attributes 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
set
method for the attributes property.For example, to add a new item, do as follows:
getAttributes().add(newItem);
Objects of the following type(s) are allowed in the list
JaxbHbmAnyAssociationType
JaxbHbmBasicAttributeType
JaxbHbmCompositeAttributeType
JaxbHbmDynamicComponentType
JaxbHbmManyToOneType
- Returns:
- The value of the attributes property.
-
getSqlInsert
public JaxbHbmCustomSqlDmlType getSqlInsert()
Gets the value of the sqlInsert property.- Returns:
- possible object is
JaxbHbmCustomSqlDmlType
-
setSqlInsert
public void setSqlInsert(JaxbHbmCustomSqlDmlType value)
Sets the value of the sqlInsert property.- Parameters:
value
- allowed object isJaxbHbmCustomSqlDmlType
-
getSqlUpdate
public JaxbHbmCustomSqlDmlType getSqlUpdate()
Gets the value of the sqlUpdate property.- Returns:
- possible object is
JaxbHbmCustomSqlDmlType
-
setSqlUpdate
public void setSqlUpdate(JaxbHbmCustomSqlDmlType value)
Sets the value of the sqlUpdate property.- Parameters:
value
- allowed object isJaxbHbmCustomSqlDmlType
-
getSqlDelete
public JaxbHbmCustomSqlDmlType getSqlDelete()
Gets the value of the sqlDelete property.- Returns:
- possible object is
JaxbHbmCustomSqlDmlType
-
setSqlDelete
public void setSqlDelete(JaxbHbmCustomSqlDmlType value)
Sets the value of the sqlDelete property.- Parameters:
value
- allowed object isJaxbHbmCustomSqlDmlType
-
getFetch
public JaxbHbmFetchStyleEnum getFetch()
Gets the value of the fetch property.- Returns:
- possible object is
JaxbHbmFetchStyleEnum
-
setFetch
public void setFetch(JaxbHbmFetchStyleEnum value)
Sets the value of the fetch property.- Parameters:
value
- allowed object isJaxbHbmFetchStyleEnum
-
isInverse
public boolean isInverse()
Gets the value of the inverse property.- Returns:
- possible object is
Boolean
-
setInverse
public void setInverse(Boolean value)
Sets the value of the inverse property.- Parameters:
value
- allowed object isBoolean
-
isOptional
public boolean isOptional()
Gets the value of the optional property.- Returns:
- possible object is
Boolean
-
setOptional
public void setOptional(Boolean value)
Sets the value of the optional property.- Parameters:
value
- allowed object isBoolean
-
getSchema
public String getSchema()
Gets the value of the schema property.- Specified by:
getSchema
in interfaceTableInformationContainer
- Returns:
- possible object is
String
-
setSchema
public void setSchema(String value)
Sets the value of the schema property.- Parameters:
value
- allowed object isString
-
getCatalog
public String getCatalog()
Gets the value of the catalog property.- Specified by:
getCatalog
in interfaceTableInformationContainer
- Returns:
- possible object is
String
-
setCatalog
public void setCatalog(String value)
Sets the value of the catalog property.- Parameters:
value
- allowed object isString
-
getTable
public String getTable()
Gets the value of the table property.- Specified by:
getTable
in interfaceTableInformationContainer
- Returns:
- possible object is
String
-
setTable
public void setTable(String value)
Sets the value of the table property.- Parameters:
value
- allowed object isString
-
getSubselectAttribute
public String getSubselectAttribute()
Gets the value of the subselectAttribute property.- Specified by:
getSubselectAttribute
in interfaceTableInformationContainer
- Returns:
- possible object is
String
-
-