Package org.hibernate.boot.jaxb.mapping
Interface NamedQuery
-
- All Superinterfaces:
Serializable
public interface NamedQuery extends Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetComment()StringgetDescription()List<JaxbQueryHint>getHint()LockModeTypegetLockMode()StringgetName()StringgetQuery()IntegergetTimeout()voidsetComment(String comment)voidsetDescription(String value)voidsetLockMode(LockModeType value)voidsetName(String value)voidsetQuery(String value)voidsetTimeout(Integer timeout)
-
-
-
Method Detail
-
getName
String getName()
-
setName
void setName(String value)
-
getDescription
String getDescription()
-
setDescription
void setDescription(String value)
-
getQuery
String getQuery()
-
setQuery
void setQuery(String value)
-
getComment
String getComment()
-
setComment
void setComment(String comment)
-
getTimeout
Integer getTimeout()
-
setTimeout
void setTimeout(Integer timeout)
-
getLockMode
LockModeType getLockMode()
-
setLockMode
void setLockMode(LockModeType value)
-
getHint
List<JaxbQueryHint> getHint()
-
-