Package org.hibernate.boot.jaxb.hbm.spi
Class JaxbHbmConfigParameterContainer
- java.lang.Object
-
- org.hibernate.boot.jaxb.hbm.spi.JaxbHbmConfigParameterContainer
-
- All Implemented Interfaces:
java.io.Serializable
,ConfigParameterContainer
- Direct Known Subclasses:
JaxbHbmGeneratorSpecificationType
,JaxbHbmTypeDefinitionType
,JaxbHbmTypeSpecificationType
public abstract class JaxbHbmConfigParameterContainer extends java.lang.Object implements java.io.Serializable, ConfigParameterContainer
Java class for ConfigParameterContainer complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ConfigParameterContainer"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="param" type="{http://www.hibernate.org/xsd/orm/hbm}ConfigParameterType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<JaxbHbmConfigParameterType>
configParameters
-
Constructor Summary
Constructors Constructor Description JaxbHbmConfigParameterContainer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<JaxbHbmConfigParameterType>
getConfigParameters()
Gets the value of the configParameters property.
-
-
-
Field Detail
-
configParameters
protected java.util.List<JaxbHbmConfigParameterType> configParameters
-
-
Method Detail
-
getConfigParameters
public java.util.List<JaxbHbmConfigParameterType> getConfigParameters()
Gets the value of the configParameters 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 configParameters property.For example, to add a new item, do as follows:
getConfigParameters().add(newItem);
Objects of the following type(s) are allowed in the list
JaxbHbmConfigParameterType
- Specified by:
getConfigParameters
in interfaceConfigParameterContainer
-
-