Example usage for org.hibernate.dialect.function StandardSQLFunction getName

List of usage examples for org.hibernate.dialect.function StandardSQLFunction getName

Introduction

In this page you can find the example usage for org.hibernate.dialect.function StandardSQLFunction getName.

Prototype

public String getName() 

Source Link

Document

Function name accessor

Usage

From source file:org.ligoj.app.dao.SecuritySpringDataListener.java

License:MIT License

private void registerFunction(final StandardSQLFunction sqlFunction) {
    dialect.getFunctions().put(sqlFunction.getName(), sqlFunction);
    sqlFunctions.put(sqlFunction.getName(), sqlFunction);
}