impl new added method to make compiler happy

This commit is contained in:
Strong Liu 2013-01-08 13:38:31 +08:00
parent 12fb24ec40
commit 923002fa50
1 changed files with 6 additions and 0 deletions

View File

@ -37,6 +37,7 @@ import org.hibernate.MappingException;
import org.hibernate.bytecode.spi.EntityInstrumentationMetadata;
import org.hibernate.cache.spi.access.EntityRegionAccessStrategy;
import org.hibernate.cache.spi.access.NaturalIdRegionAccessStrategy;
import org.hibernate.cache.spi.entry.CacheEntry;
import org.hibernate.cache.spi.entry.CacheEntryStructure;
import org.hibernate.ejb.Ejb3Configuration;
import org.hibernate.engine.spi.CascadeStyle;
@ -146,6 +147,11 @@ public class PersisterClassProviderTest {
return null;
}
@Override
public CacheEntry buildCacheEntry(Object entity, Object[] state, Object version, SessionImplementor session) {
return null;
}
@Override
public String getEntityName() {
return null;