Class JaxbEmbedded
- java.lang.Object
-
- org.hibernate.boot.jaxb.mapping.spi.JaxbEmbedded
-
- All Implemented Interfaces:
java.io.Serializable,PersistentAttribute
public class JaxbEmbedded extends java.lang.Object implements java.io.Serializable, PersistentAttribute
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected AccessTypeaccessprotected java.util.List<JaxbAssociationOverride>associationOverrideprotected java.util.List<JaxbAttributeOverride>attributeOverrideprotected java.util.List<JaxbConvert>convertprotected java.lang.Stringname
-
Constructor Summary
Constructors Constructor Description JaxbEmbedded()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AccessTypegetAccess()Gets the value of the access property.java.util.List<JaxbAssociationOverride>getAssociationOverride()Gets the value of the associationOverride property.java.util.List<JaxbAttributeOverride>getAttributeOverride()Gets the value of the attributeOverride property.java.util.List<JaxbConvert>getConvert()Gets the value of the convert property.java.lang.StringgetName()Gets the value of the name property.voidsetAccess(AccessType value)Sets the value of the access property.voidsetName(java.lang.String value)Sets the value of the name property.
-
-
-
Field Detail
-
attributeOverride
protected java.util.List<JaxbAttributeOverride> attributeOverride
-
associationOverride
protected java.util.List<JaxbAssociationOverride> associationOverride
-
convert
protected java.util.List<JaxbConvert> convert
-
name
protected java.lang.String name
-
access
protected AccessType access
-
-
Method Detail
-
getAttributeOverride
public java.util.List<JaxbAttributeOverride> getAttributeOverride()
Gets the value of the attributeOverride 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
setmethod for the attributeOverride property.For example, to add a new item, do as follows:
getAttributeOverride().add(newItem);Objects of the following type(s) are allowed in the list
JaxbAttributeOverride
-
getAssociationOverride
public java.util.List<JaxbAssociationOverride> getAssociationOverride()
Gets the value of the associationOverride 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
setmethod for the associationOverride property.For example, to add a new item, do as follows:
getAssociationOverride().add(newItem);Objects of the following type(s) are allowed in the list
JaxbAssociationOverride
-
getConvert
public java.util.List<JaxbConvert> getConvert()
Gets the value of the convert 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
setmethod for the convert property.For example, to add a new item, do as follows:
getConvert().add(newItem);Objects of the following type(s) are allowed in the list
JaxbConvert
-
getName
public java.lang.String getName()
Gets the value of the name property.- Specified by:
getNamein interfacePersistentAttribute- Returns:
- possible object is
String
-
setName
public void setName(java.lang.String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getAccess
public AccessType getAccess()
Gets the value of the access property.- Specified by:
getAccessin interfacePersistentAttribute- Returns:
- possible object is
String
-
setAccess
public void setAccess(AccessType value)
Sets the value of the access property.- Specified by:
setAccessin interfacePersistentAttribute- Parameters:
value- allowed object isString
-
-