Interface AssociationAttribute
-
- All Superinterfaces:
FetchableAttribute
,PersistentAttribute
- All Known Implementing Classes:
JaxbManyToMany
,JaxbManyToOne
,JaxbOneToMany
,JaxbOneToOne
public interface AssociationAttribute extends PersistentAttribute, FetchableAttribute
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JaxbCascadeType
getCascade()
JaxbJoinTable
getJoinTable()
java.lang.String
getTargetEntity()
void
setCascade(JaxbCascadeType value)
void
setJoinTable(JaxbJoinTable value)
void
setTargetEntity(java.lang.String value)
-
Methods inherited from interface org.hibernate.boot.jaxb.mapping.spi.FetchableAttribute
getFetch, setFetch
-
Methods inherited from interface org.hibernate.boot.jaxb.mapping.spi.PersistentAttribute
getAccess, getName, setAccess
-
-
-
-
Method Detail
-
getJoinTable
JaxbJoinTable getJoinTable()
-
setJoinTable
void setJoinTable(JaxbJoinTable value)
-
getCascade
JaxbCascadeType getCascade()
-
setCascade
void setCascade(JaxbCascadeType value)
-
getTargetEntity
java.lang.String getTargetEntity()
-
setTargetEntity
void setTargetEntity(java.lang.String value)
-
-