Class JaxbEntityResult
- java.lang.Object
-
- org.hibernate.boot.jaxb.mapping.spi.JaxbEntityResult
-
- All Implemented Interfaces:
java.io.Serializable
public class JaxbEntityResult extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
discriminatorColumn
protected java.lang.String
entityClass
protected java.util.List<JaxbFieldResult>
fieldResult
-
Constructor Summary
Constructors Constructor Description JaxbEntityResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDiscriminatorColumn()
Gets the value of the discriminatorColumn property.java.lang.String
getEntityClass()
Gets the value of the entityClass property.java.util.List<JaxbFieldResult>
getFieldResult()
Gets the value of the fieldResult property.void
setDiscriminatorColumn(java.lang.String value)
Sets the value of the discriminatorColumn property.void
setEntityClass(java.lang.String value)
Sets the value of the entityClass property.
-
-
-
Field Detail
-
fieldResult
protected java.util.List<JaxbFieldResult> fieldResult
-
entityClass
protected java.lang.String entityClass
-
discriminatorColumn
protected java.lang.String discriminatorColumn
-
-
Method Detail
-
getFieldResult
public java.util.List<JaxbFieldResult> getFieldResult()
Gets the value of the fieldResult 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 fieldResult property.For example, to add a new item, do as follows:
getFieldResult().add(newItem);
Objects of the following type(s) are allowed in the list
JaxbFieldResult
-
getEntityClass
public java.lang.String getEntityClass()
Gets the value of the entityClass property.- Returns:
- possible object is
String
-
setEntityClass
public void setEntityClass(java.lang.String value)
Sets the value of the entityClass property.- Parameters:
value
- allowed object isString
-
getDiscriminatorColumn
public java.lang.String getDiscriminatorColumn()
Gets the value of the discriminatorColumn property.- Returns:
- possible object is
String
-
setDiscriminatorColumn
public void setDiscriminatorColumn(java.lang.String value)
Sets the value of the discriminatorColumn property.- Parameters:
value
- allowed object isString
-
-