HHH-12966 Make CacheableDataStatistics serializable
This is necessary to access statistics over JMX.
This commit is contained in:
parent
83191633ec
commit
8293d6dce3
|
@ -6,10 +6,12 @@
|
|||
*/
|
||||
package org.hibernate.stat;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Steve Ebersole
|
||||
*/
|
||||
public interface CacheableDataStatistics {
|
||||
public interface CacheableDataStatistics extends Serializable {
|
||||
long NOT_CACHED_COUNT = Long.MIN_VALUE;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue