public class JaxbJoinElement
extends java.lang.Object
Java class for join-element complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="join-element"> <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/hibernate-mapping}key-element"/> <choice maxOccurs="unbounded" minOccurs="0"> <element name="property" type="{http://www.hibernate.org/xsd/hibernate-mapping}property-element"/> <element name="many-to-one" type="{http://www.hibernate.org/xsd/hibernate-mapping}many-to-one-element"/> <element name="component" type="{http://www.hibernate.org/xsd/hibernate-mapping}component-element"/> <element name="dynamic-component" type="{http://www.hibernate.org/xsd/hibernate-mapping}dynamic-component-element"/> <element name="any" type="{http://www.hibernate.org/xsd/hibernate-mapping}any-element"/> </choice> <element name="sql-insert" type="{http://www.hibernate.org/xsd/hibernate-mapping}sql-insert-element" minOccurs="0"/> <element name="sql-update" type="{http://www.hibernate.org/xsd/hibernate-mapping}sql-update-element" minOccurs="0"/> <element name="sql-delete" type="{http://www.hibernate.org/xsd/hibernate-mapping}sql-delete-element" minOccurs="0"/> </sequence> <attribute name="catalog" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="fetch" type="{http://www.hibernate.org/xsd/hibernate-mapping}fetch-attribute" 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" /> <attribute name="schema" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="subselect" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="table" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
catalog |
protected java.lang.String |
comment |
protected JaxbFetchAttribute |
fetch |
protected java.lang.Boolean |
inverse |
protected JaxbKeyElement |
key |
protected java.lang.Boolean |
optional |
protected java.util.List<java.lang.Object> |
propertyOrManyToOneOrComponent |
protected java.lang.String |
schema |
protected JaxbSqlDeleteElement |
sqlDelete |
protected JaxbSqlInsertElement |
sqlInsert |
protected JaxbSqlUpdateElement |
sqlUpdate |
protected java.lang.String |
subselect |
protected java.lang.String |
subselectAttribute |
protected java.lang.String |
table |
Constructor and Description |
---|
JaxbJoinElement() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCatalog()
Gets the value of the catalog property.
|
java.lang.String |
getComment()
Gets the value of the comment property.
|
JaxbFetchAttribute |
getFetch()
Gets the value of the fetch property.
|
JaxbKeyElement |
getKey()
Gets the value of the key property.
|
java.util.List<java.lang.Object> |
getPropertyOrManyToOneOrComponent()
Gets the value of the propertyOrManyToOneOrComponent property.
|
java.lang.String |
getSchema()
Gets the value of the schema property.
|
JaxbSqlDeleteElement |
getSqlDelete()
Gets the value of the sqlDelete property.
|
JaxbSqlInsertElement |
getSqlInsert()
Gets the value of the sqlInsert property.
|
JaxbSqlUpdateElement |
getSqlUpdate()
Gets the value of the sqlUpdate property.
|
java.lang.String |
getSubselect()
Gets the value of the subselect property.
|
java.lang.String |
getSubselectAttribute()
Gets the value of the subselectAttribute property.
|
java.lang.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(java.lang.String value)
Sets the value of the catalog property.
|
void |
setComment(java.lang.String value)
Sets the value of the comment property.
|
void |
setFetch(JaxbFetchAttribute value)
Sets the value of the fetch property.
|
void |
setInverse(java.lang.Boolean value)
Sets the value of the inverse property.
|
void |
setKey(JaxbKeyElement value)
Sets the value of the key property.
|
void |
setOptional(java.lang.Boolean value)
Sets the value of the optional property.
|
void |
setSchema(java.lang.String value)
Sets the value of the schema property.
|
void |
setSqlDelete(JaxbSqlDeleteElement value)
Sets the value of the sqlDelete property.
|
void |
setSqlInsert(JaxbSqlInsertElement value)
Sets the value of the sqlInsert property.
|
void |
setSqlUpdate(JaxbSqlUpdateElement value)
Sets the value of the sqlUpdate property.
|
void |
setSubselect(java.lang.String value)
Sets the value of the subselect property.
|
void |
setSubselectAttribute(java.lang.String value)
Sets the value of the subselectAttribute property.
|
void |
setTable(java.lang.String value)
Sets the value of the table property.
|
protected java.lang.String subselect
protected java.lang.String comment
protected JaxbKeyElement key
protected java.util.List<java.lang.Object> propertyOrManyToOneOrComponent
protected JaxbSqlInsertElement sqlInsert
protected JaxbSqlUpdateElement sqlUpdate
protected JaxbSqlDeleteElement sqlDelete
protected java.lang.String catalog
protected JaxbFetchAttribute fetch
protected java.lang.Boolean inverse
protected java.lang.Boolean optional
protected java.lang.String schema
protected java.lang.String subselectAttribute
protected java.lang.String table
public java.lang.String getSubselect()
String
public void setSubselect(java.lang.String value)
value
- allowed object is
String
public java.lang.String getComment()
String
public void setComment(java.lang.String value)
value
- allowed object is
String
public JaxbKeyElement getKey()
JaxbKeyElement
public void setKey(JaxbKeyElement value)
value
- allowed object is
JaxbKeyElement
public java.util.List<java.lang.Object> getPropertyOrManyToOneOrComponent()
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 propertyOrManyToOneOrComponent property.
For example, to add a new item, do as follows:
getPropertyOrManyToOneOrComponent().add(newItem);
Objects of the following type(s) are allowed in the list
JaxbPropertyElement
JaxbManyToOneElement
JaxbComponentElement
JaxbDynamicComponentElement
JaxbAnyElement
public JaxbSqlInsertElement getSqlInsert()
JaxbSqlInsertElement
public void setSqlInsert(JaxbSqlInsertElement value)
value
- allowed object is
JaxbSqlInsertElement
public JaxbSqlUpdateElement getSqlUpdate()
JaxbSqlUpdateElement
public void setSqlUpdate(JaxbSqlUpdateElement value)
value
- allowed object is
JaxbSqlUpdateElement
public JaxbSqlDeleteElement getSqlDelete()
JaxbSqlDeleteElement
public void setSqlDelete(JaxbSqlDeleteElement value)
value
- allowed object is
JaxbSqlDeleteElement
public java.lang.String getCatalog()
String
public void setCatalog(java.lang.String value)
value
- allowed object is
String
public JaxbFetchAttribute getFetch()
JaxbFetchAttribute
public void setFetch(JaxbFetchAttribute value)
value
- allowed object is
JaxbFetchAttribute
public boolean isInverse()
Boolean
public void setInverse(java.lang.Boolean value)
value
- allowed object is
Boolean
public boolean isOptional()
Boolean
public void setOptional(java.lang.Boolean value)
value
- allowed object is
Boolean
public java.lang.String getSchema()
String
public void setSchema(java.lang.String value)
value
- allowed object is
String
public java.lang.String getSubselectAttribute()
String
public void setSubselectAttribute(java.lang.String value)
value
- allowed object is
String
public java.lang.String getTable()
String
public void setTable(java.lang.String value)
value
- allowed object is
String
Copyright © 2001-2013 Red Hat, Inc. All Rights Reserved.