Sign in
apache
/
grails-data-mapping
/
ecc608831967aee5f035b1bba28dee848aaa93e7
/
.
/
grails-data-mongodb
/
examples
/
hibernate5
/
grails-app
/
domain
/
functional
/
tests
/
Book.groovy
blob: 108981a88bca6186e66b3a006d6b33dff5894f33 [
file
] [
log
] [
blame
]
package
functional
.
tests
import
grails
.
mongodb
.
MongoEntity
class
Book
implements
MongoEntity
<
Book
>
{
String
title
static
mapWith
=
"mongo"
static
constraints
=
{
title blank
:
false
}
}