Package org.hibernate.boot.jaxb.mapping
Class JaxbHbmAnyKey
- java.lang.Object
-
- org.hibernate.boot.jaxb.mapping.JaxbHbmAnyKey
-
- All Implemented Interfaces:
Serializable
,DiscriminatedAssociation.Key
public class JaxbHbmAnyKey extends Object implements Serializable, DiscriminatedAssociation.Key
Describes the "foreign key" of a discriminated association (any, many-to-any).Java class for hbm-any-key complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="hbm-any-key"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="column" type="{http://www.hibernate.org/xsd/orm/mapping}column" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<JaxbColumn>
columns
protected String
type
-
Constructor Summary
Constructors Constructor Description JaxbHbmAnyKey()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<JaxbColumn>
getColumns()
Gets the value of the columns property.String
getType()
Gets the value of the type property.void
setType(String value)
Sets the value of the type property.
-
-
-
Field Detail
-
type
protected String type
-
columns
protected List<JaxbColumn> columns
-
-
Method Detail
-
getType
public String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(String value)
Sets the value of the type property.- Parameters:
value
- allowed object isString
-
getColumns
public List<JaxbColumn> getColumns()
Gets the value of the columns 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 columns property.For example, to add a new item, do as follows:
getColumns().add(newItem);
Objects of the following type(s) are allowed in the list
JaxbColumn
- Specified by:
getColumns
in interfaceDiscriminatedAssociation.Key
- Returns:
- The value of the columns property.
-
-