org.hibernate.dialect.unique.UniqueDelegate Java Examples

The following examples show how to use org.hibernate.dialect.unique.UniqueDelegate. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SpannerDialect.java    From google-cloud-spanner-hibernate with GNU Lesser General Public License v2.1 4 votes vote down vote up
@Override
public UniqueDelegate getUniqueDelegate() {
  return uniqueDelegate;
}
 
Example #2
Source File: SQLiteDialect.java    From md_blockchain with Apache License 2.0 4 votes vote down vote up
@Override
public UniqueDelegate getUniqueDelegate() {
    return uniqueDelegate;
}
 
Example #3
Source File: MySQLDialect.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
@Override
public UniqueDelegate getUniqueDelegate() {
	return uniqueDelegate;
}
 
Example #4
Source File: InformixDialect.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
@Override
public UniqueDelegate getUniqueDelegate() {
	return uniqueDelegate;
}
 
Example #5
Source File: DB2Dialect.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
@Override
public UniqueDelegate getUniqueDelegate() {
	return uniqueDelegate;
}
 
Example #6
Source File: DelegatingDialect.java    From keycloak with Apache License 2.0 4 votes vote down vote up
@Override
public UniqueDelegate getUniqueDelegate() {
    return getInstance().getUniqueDelegate();
}
 
Example #7
Source File: Dialect.java    From lams with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the UniqueDelegate supported by this dialect
 *
 * @return The UniqueDelegate
 */
public UniqueDelegate getUniqueDelegate() {
	return uniqueDelegate;
}