Package org.hibernate.boot.jaxb.mapping
Class JaxbCollectionUserTypeRegistration
- java.lang.Object
-
- org.hibernate.boot.jaxb.mapping.JaxbCollectionUserTypeRegistration
-
- All Implemented Interfaces:
Serializable
public class JaxbCollectionUserTypeRegistration extends Object implements Serializable
See @CollectionTypeRegistrationJava class for collection-user-type-registration complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="collection-user-type-registration"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="param" type="{http://www.hibernate.org/xsd/orm/mapping}configuration-parameter" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="classification" use="required" type="{http://www.hibernate.org/xsd/orm/mapping}collection-classifications" /> <attribute name="descriptor" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected CollectionClassification
classification
protected String
descriptor
protected List<JaxbConfigurationParameter>
parameters
-
Constructor Summary
Constructors Constructor Description JaxbCollectionUserTypeRegistration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CollectionClassification
getClassification()
Gets the value of the classification property.String
getDescriptor()
Gets the value of the descriptor property.List<JaxbConfigurationParameter>
getParameters()
Gets the value of the parameters property.void
setClassification(CollectionClassification value)
Sets the value of the classification property.void
setDescriptor(String value)
Sets the value of the descriptor property.
-
-
-
Field Detail
-
parameters
protected List<JaxbConfigurationParameter> parameters
-
classification
protected CollectionClassification classification
-
descriptor
protected String descriptor
-
-
Method Detail
-
getParameters
public List<JaxbConfigurationParameter> getParameters()
Gets the value of the parameters 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 parameters property.For example, to add a new item, do as follows:
getParameters().add(newItem);
Objects of the following type(s) are allowed in the list
JaxbConfigurationParameter
- Returns:
- The value of the parameters property.
-
getClassification
public CollectionClassification getClassification()
Gets the value of the classification property.- Returns:
- possible object is
String
-
setClassification
public void setClassification(CollectionClassification value)
Sets the value of the classification property.- Parameters:
value
- allowed object isString
-
getDescriptor
public String getDescriptor()
Gets the value of the descriptor property.- Returns:
- possible object is
String
-
-