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;
|
import org.hibernate.dialect.Dialect;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convenience base class for {@link org.hibernate.mapping.AuxiliaryDatabaseObject}s.
|
* Convenience base class for {@link AuxiliaryDatabaseObject}s.
|
||||||
* <p/>
|
* <p/>
|
||||||
* This implementation performs dialect scoping checks strictly based on
|
* This implementation performs dialect scoping checks strictly based on
|
||||||
* dialect name comparisons. Custom implementations might want to do
|
* dialect name comparisons. Custom implementations might want to do
|
||||||
|
|
|
@ -47,7 +47,7 @@ public interface MetadataSourceProcessor {
|
||||||
void processNamedQueries();
|
void processNamedQueries();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Process all {@link org.hibernate.mapping.AuxiliaryDatabaseObject} definitions.
|
* Process all {@link org.hibernate.boot.model.relational.AuxiliaryDatabaseObject} definitions.
|
||||||
* <p/>
|
* <p/>
|
||||||
* This step has no prerequisites.
|
* This step has no prerequisites.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -15,7 +15,10 @@ import org.hibernate.dialect.Dialect;
|
||||||
* creating/dropping the schema.
|
* creating/dropping the schema.
|
||||||
*
|
*
|
||||||
* @author Steve Ebersole
|
* @author Steve Ebersole
|
||||||
|
*
|
||||||
|
* @deprecated Use {@link org.hibernate.boot.model.relational.AuxiliaryDatabaseObject} instead.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public interface AuxiliaryDatabaseObject extends RelationalModel, Serializable {
|
public interface AuxiliaryDatabaseObject extends RelationalModel, Serializable {
|
||||||
/**
|
/**
|
||||||
* Add the given dialect name to the scope of dialects to which
|
* Add the given dialect name to the scope of dialects to which
|
||||||
|
|
Loading…
Reference in New Issue