public interface

AuxiliaryDatabaseObject

implements Serializable RelationalModel
org.hibernate.mapping.AuxiliaryDatabaseObject
Known Indirect Subclasses

Class Overview

Auxiliary database objects (i.e., triggers, stored procedures, etc) defined in the mappings. Allows Hibernate to manage their lifecycle as part of creating/dropping the schema.

Summary

Public Methods
abstract void addDialectScope(String dialectName)
Add the given dialect name to the scope of dialects to which this database object applies.
abstract boolean appliesToDialect(Dialect dialect)
Does this database object apply to the given dialect?
[Expand]
Inherited Methods
From interface org.hibernate.mapping.RelationalModel

Public Methods

public abstract void addDialectScope (String dialectName)

Add the given dialect name to the scope of dialects to which this database object applies.

Parameters
dialectName The name of a dialect.

public abstract boolean appliesToDialect (Dialect dialect)

Does this database object apply to the given dialect?

Parameters
dialect The dialect to check against.
Returns
  • True if this database object does apply to the given dialect.