Class AuditReaderFactory

java.lang.Object
org.hibernate.envers.AuditReaderFactory

public class AuditReaderFactory extends Object
  • Method Details

    • get

      public static AuditReader get(Session session) throws AuditException
      Create an audit reader associated with an open session.
      Parameters:
      session - An open session.
      Returns:
      An audit reader associated with the given sesison. It shouldn't be used after the session is closed.
      Throws:
      AuditException - When the given required listeners aren't installed.
    • get

      public static AuditReader get(EntityManager entityManager) throws AuditException
      Create an audit reader associated with an open entity manager.
      Parameters:
      entityManager - An open entity manager.
      Returns:
      An audit reader associated with the given entity manager. It shouldn't be used after the entity manager is closed.
      Throws:
      AuditException - When the given entity manager is not based on Hibernate, or if the required listeners aren't installed.