public class AuditEntity extends Object
Restrictions
Modifier and Type | Method and Description |
---|---|
static AuditCriterion |
and(AuditCriterion lhs,
AuditCriterion rhs)
Return the conjuction of two criterions.
|
static AuditConjunction |
conjunction()
Group criterions together in a single conjunction (A and B and C...).
|
static AuditDisjunction |
disjunction()
Group criterions together in a single disjunction (A or B or C...).
|
static AuditId |
id() |
static AuditCriterion |
not(AuditCriterion expression)
Return the negation of a criterion.
|
static AuditCriterion |
or(AuditCriterion lhs,
AuditCriterion rhs)
Return the disjuction of two criterions.
|
static AuditProperty<Object> |
property(String propertyName)
Create restrictions, projections and specify order for a property of an audited entity.
|
static AuditRelatedId |
relatedId(String propertyName)
Create restrictions on an id of a related entity.
|
static AuditProperty<Number> |
revisionNumber()
Create restrictions, projections and specify order for the revision number, corresponding to an
audited entity.
|
static AuditProperty<Object> |
revisionProperty(String propertyName)
Create restrictions, projections and specify order for a property of the revision entity,
corresponding to an audited entity.
|
static AuditProperty<RevisionType> |
revisionType()
Create restrictions, projections and specify order for the revision type, corresponding to an
audited entity.
|
public static AuditId id()
public static AuditProperty<Object> property(String propertyName)
propertyName
- Name of the property.public static AuditProperty<Number> revisionNumber()
public static AuditProperty<Object> revisionProperty(String propertyName)
propertyName
- Name of the property.public static AuditProperty<RevisionType> revisionType()
public static AuditRelatedId relatedId(String propertyName)
propertyName
- Name of the property, which is the relation.public static AuditCriterion and(AuditCriterion lhs, AuditCriterion rhs)
public static AuditCriterion or(AuditCriterion lhs, AuditCriterion rhs)
public static AuditCriterion not(AuditCriterion expression)
public static AuditConjunction conjunction()
public static AuditDisjunction disjunction()
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.