Package org.hibernate.boot.model
Class CustomSql
- java.lang.Object
-
- org.hibernate.boot.model.CustomSql
-
public class CustomSql extends Object
Models the information for custom SQL execution defined as part of the mapping for a primary or secondary table.
-
-
Constructor Summary
Constructors Constructor Description CustomSql(String sql, boolean callable, ExecuteUpdateResultCheckStyle checkStyle)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExecuteUpdateResultCheckStyle
getCheckStyle()
String
getSql()
boolean
isCallable()
-
-
-
Constructor Detail
-
CustomSql
public CustomSql(String sql, boolean callable, ExecuteUpdateResultCheckStyle checkStyle)
-
-
Method Detail
-
getSql
public String getSql()
-
isCallable
public boolean isCallable()
-
getCheckStyle
public ExecuteUpdateResultCheckStyle getCheckStyle()
-
-