Sign in
apache
/
grails-data-mapping
/
ecc608831967aee5f035b1bba28dee848aaa93e7
/
.
/
grails-data-hibernate5
/
examples
/
grails-hibernate
/
grails-app
/
controllers
/
functional
/
tests
/
ProductController.groovy
blob: 5a4625b713fe3d88782e749da7f7563b3891e20f [
file
] [
log
] [
blame
]
package
functional
.
tests
import
grails
.
rest
.
RestfulController
/**
* Created by graemerocher on 02/01/2017.
*/
class
ProductController
extends
RestfulController
<
Product
>
{
static
responseFormats
=
[
'json'
]
ProductController
()
{
super
(
Product
)
}
}