public interface SqlQueryResolver
Modifier and Type | Method and Description |
---|---|
java.lang.String |
resolveSqlQuery(java.lang.String sqlQueryName)
Resolve the given sql query by name.
|
java.lang.String resolveSqlQuery(java.lang.String sqlQueryName) throws HawaiiException
To allow for SqlQueryResolver
chaining, a ViewResolver
should return null
if a sql query with the given name
is not defined in it.
sqlQueryName
- name of the sql query to resolvenull
if not found (optional, to allow for SqlQueryResolver
chaining)HawaiiException
- if the sql query could not be resolved (typically in case of problems resolving the sql query)