org.hibernate.metamodel.relational
Class AbstractAuxiliaryDatabaseObject
java.lang.Object
org.hibernate.metamodel.relational.AbstractAuxiliaryDatabaseObject
- All Implemented Interfaces:
- Serializable, AuxiliaryDatabaseObject, Exportable
- Direct Known Subclasses:
- BasicAuxiliaryDatabaseObjectImpl
public abstract class AbstractAuxiliaryDatabaseObject
- extends Object
- implements AuxiliaryDatabaseObject
Convenience base class for AuxiliaryDatabaseObject
s.
This implementation performs dialect scoping checks strictly based on
dialect name comparisons. Custom implementations might want to do
instanceof-type checks.
- See Also:
- Serialized Form
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AbstractAuxiliaryDatabaseObject
protected AbstractAuxiliaryDatabaseObject(Set<String> dialectScopes)
addDialectScope
public void addDialectScope(String dialectName)
getDialectScopes
public Iterable<String> getDialectScopes()
appliesToDialect
public boolean appliesToDialect(Dialect dialect)
- Description copied from interface:
AuxiliaryDatabaseObject
- Does this database object apply to the given dialect?
- Specified by:
appliesToDialect
in interface AuxiliaryDatabaseObject
- Parameters:
dialect
- The dialect to check against.
- Returns:
- True if this database object does apply to the given dialect.
getExportIdentifier
public String getExportIdentifier()
- Description copied from interface:
Exportable
- Get a unique identifier to make sure we are not exporting the same database structure multiple times.
- Specified by:
getExportIdentifier
in interface Exportable
- Returns:
- The exporting identifier.
Copyright © 2001-2012 Red Hat, Inc. All Rights Reserved.