Skip to content

Commit

Permalink
HHH-8354 - New dirty-checking options based on bytecode enhancement
Browse files Browse the repository at this point in the history
  • Loading branch information
sebersole committed Oct 9, 2013
1 parent 6258647 commit 1380068
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import java.util.Arrays;
import java.util.Comparator;
import java.util.Map;
import java.util.Set;
import javax.persistence.EntityManagerFactory;
import javax.persistence.PersistenceException;

Expand Down Expand Up @@ -610,9 +611,13 @@ public FilterAliasGenerator getFilterAliasGenerator(String rootAlias) {
return null;
}

@Override
public int[] resolveAttributeIndexes(Set<String> properties) {
return new int[0];
}

@Override
public CacheEntry buildCacheEntry(Object entity, Object[] state, Object version, SessionImplementor session) {
// TODO Auto-generated method stub
return null;
}

Expand All @@ -623,12 +628,12 @@ public EntityPersister getEntityPersister() {

@Override
public EntityIdentifierDefinition getEntityKeyDefinition() {
return null; //To change body of implemented methods use File | Settings | File Templates.
return null;
}

@Override
public Iterable<AttributeDefinition> getAttributes() {
return null; //To change body of implemented methods use File | Settings | File Templates.
return null;
}
}

Expand Down

0 comments on commit 1380068

Please sign in to comment.