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 String
getComment()
String
getDescription()
List<JaxbQueryHint>
getHint()
LockModeType
getLockMode()
String
getName()
String
getQuery()
Integer
getTimeout()
void
setComment(String comment)
void
setDescription(String value)
void
setLockMode(LockModeType value)
void
setName(String value)
void
setQuery(String value)
void
setTimeout(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()
-
-