HHH-7872 corrected compiling issue

This commit is contained in:
Brett Meyer 2012-12-19 14:48:59 -05:00
parent 12c7ab93c3
commit 0a17d4612a
1 changed files with 7 additions and 0 deletions

View File

@ -38,6 +38,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.jpa.test.SettingsGenerator;
import org.hibernate.jpa.test.PersistenceUnitDescriptorAdapter;
@ -602,6 +603,12 @@ public class PersisterClassProviderTest {
public FilterAliasGenerator getFilterAliasGenerator(String rootAlias) {
return null;
}
@Override
public CacheEntry buildCacheEntry(Object entity, Object[] state, Object version, SessionImplementor session) {
// TODO Auto-generated method stub
return null;
}
}
public static class GoofyException extends RuntimeException {