Package org.hibernate.envers.boot.model
Class DiscriminatorPersistentEntity
- java.lang.Object
-
- org.hibernate.envers.boot.model.PersistentEntity
-
- org.hibernate.envers.boot.model.SubclassPersistentEntity
-
- org.hibernate.envers.boot.model.DiscriminatorPersistentEntity
-
- All Implemented Interfaces:
AttributeContainer
,JoinAwarePersistentEntity
public class DiscriminatorPersistentEntity extends SubclassPersistentEntity implements JoinAwarePersistentEntity
A persistent entity mapping that uses a single table to store entities based on a discriminator.
-
-
Constructor Summary
Constructors Constructor Description DiscriminatorPersistentEntity(AuditTableData auditTableData, PersistentClass persistentClass)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addAttribute(Attribute attribute)
Add an attribute to the container.void
addJoin(Join join)
Add a secondary table join to the entity mapping.void
build(JaxbHbmHibernateMapping mapping)
JaxbHbmDiscriminatorSubclassEntityType
buildJaxbMapping()
String
getDiscriminatorValue()
List<Join>
getJoins()
Get an unmodifiable list of joins associated with entity mapping.boolean
isJoinAware()
void
setDiscriminatorValue(String discriminatorValue)
-
Methods inherited from class org.hibernate.envers.boot.model.SubclassPersistentEntity
getExtends, setExtends
-
Methods inherited from class org.hibernate.envers.boot.model.PersistentEntity
getAuditTableData, getPersistentClass
-
-
-
-
Constructor Detail
-
DiscriminatorPersistentEntity
public DiscriminatorPersistentEntity(AuditTableData auditTableData, PersistentClass persistentClass)
-
-
Method Detail
-
addAttribute
public void addAttribute(Attribute attribute)
Description copied from interface:AttributeContainer
Add an attribute to the container.- Specified by:
addAttribute
in interfaceAttributeContainer
- Parameters:
attribute
- the attribute, should not benull
-
isJoinAware
public boolean isJoinAware()
- Overrides:
isJoinAware
in classPersistentEntity
-
getDiscriminatorValue
public String getDiscriminatorValue()
-
setDiscriminatorValue
public void setDiscriminatorValue(String discriminatorValue)
-
getJoins
public List<Join> getJoins()
Description copied from interface:JoinAwarePersistentEntity
Get an unmodifiable list of joins associated with entity mapping.- Specified by:
getJoins
in interfaceJoinAwarePersistentEntity
- Returns:
- list of joins
-
addJoin
public void addJoin(Join join)
Description copied from interface:JoinAwarePersistentEntity
Add a secondary table join to the entity mapping.- Specified by:
addJoin
in interfaceJoinAwarePersistentEntity
- Parameters:
join
- the secondary table join, should never benull
-
build
public void build(JaxbHbmHibernateMapping mapping)
- Specified by:
build
in classPersistentEntity
-
buildJaxbMapping
public JaxbHbmDiscriminatorSubclassEntityType buildJaxbMapping()
-
-