All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.envers.strategy.AuditStrategy Maven / Gradle / Ivy

There is a newer version: 7.0.0.Beta1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.envers.strategy;

import org.hibernate.annotations.Remove;

/**
 * Behaviours of different audit strategy for populating audit data.
 *
 * @author Stephanie Pau
 * @author Adam Warski (adam at warski dot org)
 * @author Chris Cranford
 *
 * @deprecated (since 5.4), to be removed in 6.0.
 */
@Deprecated
@Remove
public interface AuditStrategy extends org.hibernate.envers.strategy.spi.AuditStrategy {
	// todo (6.0) : these methods need to change to accept ExecutionContext rather than just Session
	//		this (^^) will also allow Envers to work against StatelessSession whereas
	//		it is currently limited to just Session
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy