import org.codehaus.groovy.grails.plugins.springsecurity.Secured @Secured(['ROLE_Manager','ROLE_AppAdmin']) class DepartmentDetailedController extends BaseController { def index = { redirect(action:list,params:params) } // the delete, save and update actions only accept POST requests static allowedMethods = [delete:'POST', save:'POST', update:'POST'] def list = { params.max = Math.min( params.max ? params.max.toInteger() : 10, 100) [ departmentInstanceList: Department.list( params ), departmentInstanceTotal: Department.count() ] } def show = { def departmentInstance = Department.get( params.id ) if(!departmentInstance) { flash.message = "Department not found with id ${params.id}" redirect(action:list) } else { return [ departmentInstance : departmentInstance ] } } def delete = { def departmentInstance = Department.get( params.id ) if(departmentInstance) { try { departmentInstance.delete(flush:true) flash.message = "Department ${params.id} deleted" redirect(action:list) } catch(org.springframework.dao.DataIntegrityViolationException e) { flash.message = "Department ${params.id} could not be deleted" redirect(action:show,id:params.id) } } else { flash.message = "Department not found with id ${params.id}" redirect(action:list) } } def edit = { def departmentInstance = Department.get( params.id ) if(!departmentInstance) { flash.message = "Department not found with id ${params.id}" redirect(action:list) } else { return [ departmentInstance : departmentInstance ] } } def update = { def departmentInstance = Department.get( params.id ) if(departmentInstance) { if(params.version) { def version = params.version.toLong() if(departmentInstance.version > version) { departmentInstance.errors.rejectValue("version", "default.optimistic.locking.failure") render(view:'edit',model:[departmentInstance:departmentInstance]) return } } departmentInstance.properties = params if(!departmentInstance.hasErrors() && departmentInstance.save(flush: true)) { flash.message = "Department ${params.id} updated" redirect(action:show,id:departmentInstance.id) } else { render(view:'edit',model:[departmentInstance:departmentInstance]) } } else { flash.message = "Department not found with id ${params.id}" redirect(action:list) } } def create = { def departmentInstance = new Department() departmentInstance.properties = params return ['departmentInstance':departmentInstance] } def save = { def departmentInstance = new Department(params) if(!departmentInstance.hasErrors() && departmentInstance.save(flush: true)) { flash.message = "Department ${departmentInstance.id} created" redirect(action:show,id:departmentInstance.id) } else { render(view:'create',model:[departmentInstance:departmentInstance]) } } }