HHH-14921 Clarify that org.hibernate.mapping.AuxiliaryDatabaseObject has been replaced with org.hibernate.boot.model.relational.AuxiliaryDatabaseObject
This commit is contained in:
parent
012bcd1cfb
commit
cc13379c77
|
@ -13,7 +13,7 @@ import java.util.concurrent.atomic.AtomicInteger;
|
|||
import org.hibernate.dialect.Dialect;
|
||||
|
||||
/**
|
||||
* Convenience base class for {@link org.hibernate.mapping.AuxiliaryDatabaseObject}s.
|
||||
* Convenience base class for {@link AuxiliaryDatabaseObject}s.
|
||||
* <p/>
|
||||
* This implementation performs dialect scoping checks strictly based on
|
||||
* dialect name comparisons. Custom implementations might want to do
|
||||
|
|
|
@ -47,7 +47,7 @@ public interface MetadataSourceProcessor {
|
|||
void processNamedQueries();
|
||||
|
||||
/**
|
||||
* Process all {@link org.hibernate.mapping.AuxiliaryDatabaseObject} definitions.
|
||||
* Process all {@link org.hibernate.boot.model.relational.AuxiliaryDatabaseObject} definitions.
|
||||
* <p/>
|
||||
* This step has no prerequisites.
|
||||
*/
|
||||
|
|
|
@ -15,7 +15,10 @@ import org.hibernate.dialect.Dialect;
|
|||
* creating/dropping the schema.
|
||||
*
|
||||
* @author Steve Ebersole
|
||||
*
|
||||
* @deprecated Use {@link org.hibernate.boot.model.relational.AuxiliaryDatabaseObject} instead.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface AuxiliaryDatabaseObject extends RelationalModel, Serializable {
|
||||
/**
|
||||
* Add the given dialect name to the scope of dialects to which
|
||||
|
|
Loading…
Reference in New Issue