Skip to content

Commit

Permalink
HHH-9524 - Make strategy for interpreting id-generator annotations pl…
Browse files Browse the repository at this point in the history
…uggable
  • Loading branch information
sebersole committed Mar 27, 2015
1 parent 64c3e4c commit 1f50efa
Show file tree
Hide file tree
Showing 8 changed files with 447 additions and 331 deletions.
Expand Up @@ -23,7 +23,6 @@
*/
package org.hibernate.boot;

import java.util.List;
import javax.persistence.AttributeConverter;
import javax.persistence.SharedCacheMode;

Expand All @@ -32,7 +31,7 @@
import org.hibernate.boot.archive.scan.spi.ScanOptions;
import org.hibernate.boot.archive.scan.spi.Scanner;
import org.hibernate.boot.archive.spi.ArchiveDescriptorFactory;
import org.hibernate.boot.model.IdGenerationTypeInterpreter;
import org.hibernate.boot.model.IdGeneratorStrategyInterpreter;
import org.hibernate.boot.model.TypeContributor;
import org.hibernate.boot.model.naming.ImplicitNamingStrategy;
import org.hibernate.boot.model.naming.PhysicalNamingStrategy;
Expand Down Expand Up @@ -398,7 +397,7 @@ public interface MetadataBuilder {
*/
MetadataBuilder applyAttributeConverter(AttributeConverter attributeConverter, boolean autoApply);

MetadataBuilder applyIdGenerationTypeInterpreter(IdGenerationTypeInterpreter interpreter);
MetadataBuilder applyIdGenerationTypeInterpreter(IdGeneratorStrategyInterpreter interpreter);


// /**
Expand Down

This file was deleted.

0 comments on commit 1f50efa

Please sign in to comment.