source: trunk/grails-app/controllers/TaskTypeController.groovy @ 403

Last change on this file since 403 was 403, checked in by gav, 14 years ago

Change all controllers to use default.optimistic.locking.failure.

File size: 3.3 KB
Line 
1import org.codehaus.groovy.grails.plugins.springsecurity.Secured
2
3class TaskTypeController extends BaseAppAdminController {
4   
5    def index = { redirect(action:list,params:params) }
6
7    // the delete, save and update actions only accept POST requests
8    static allowedMethods = [delete:'POST', save:'POST', update:'POST']
9
10    def list = {
11        params.max = Math.min( params.max ? params.max.toInteger() : 10,  100)
12        [ taskTypeInstanceList: TaskType.list( params ), taskTypeInstanceTotal: TaskType.count() ]
13    }
14
15    def show = {
16        def taskTypeInstance = TaskType.get( params.id )
17
18        if(!taskTypeInstance) {
19            flash.message = "TaskType not found with id ${params.id}"
20            redirect(action:list)
21        }
22        else { return [ taskTypeInstance : taskTypeInstance ] }
23    }
24
25    def delete = {
26        def taskTypeInstance = TaskType.get( params.id )
27        if(taskTypeInstance) {
28            try {
29                taskTypeInstance.delete(flush:true)
30                flash.message = "TaskType ${params.id} deleted"
31                redirect(action:list)
32            }
33            catch(org.springframework.dao.DataIntegrityViolationException e) {
34                flash.message = "TaskType ${params.id} could not be deleted"
35                redirect(action:show,id:params.id)
36            }
37        }
38        else {
39            flash.message = "TaskType not found with id ${params.id}"
40            redirect(action:list)
41        }
42    }
43
44    def edit = {
45        def taskTypeInstance = TaskType.get( params.id )
46
47        if(!taskTypeInstance) {
48            flash.message = "TaskType not found with id ${params.id}"
49            redirect(action:list)
50        }
51        else {
52            return [ taskTypeInstance : taskTypeInstance ]
53        }
54    }
55
56    def update = {
57        def taskTypeInstance = TaskType.get( params.id )
58        if(taskTypeInstance) {
59            if(params.version) {
60                def version = params.version.toLong()
61                if(taskTypeInstance.version > version) {
62                   
63                    taskTypeInstance.errors.rejectValue("version", "default.optimistic.locking.failure")
64                    render(view:'edit',model:[taskTypeInstance:taskTypeInstance])
65                    return
66                }
67            }
68            taskTypeInstance.properties = params
69            if(!taskTypeInstance.hasErrors() && taskTypeInstance.save(flush: true)) {
70                flash.message = "TaskType ${params.id} updated"
71                redirect(action:show,id:taskTypeInstance.id)
72            }
73            else {
74                render(view:'edit',model:[taskTypeInstance:taskTypeInstance])
75            }
76        }
77        else {
78            flash.message = "TaskType not found with id ${params.id}"
79            redirect(action:list)
80        }
81    }
82
83    def create = {
84        def taskTypeInstance = new TaskType()
85        taskTypeInstance.properties = params
86        return ['taskTypeInstance':taskTypeInstance]
87    }
88
89    def save = {
90        def taskTypeInstance = new TaskType(params)
91        if(!taskTypeInstance.hasErrors() && taskTypeInstance.save(flush: true)) {
92            flash.message = "TaskType ${taskTypeInstance.id} created"
93            redirect(action:show,id:taskTypeInstance.id)
94        }
95        else {
96            render(view:'create',model:[taskTypeInstance:taskTypeInstance])
97        }
98    }
99}
Note: See TracBrowser for help on using the repository browser.