source: branches/features/taskProcedureRework/grails-app/domain/TaskProcedure.groovy @ 793

Last change on this file since 793 was 793, checked in by gav, 13 years ago

Domain change, add DocumentReference.

File size: 1.3 KB
Line 
1import org.apache.commons.collections.list.LazyList
2import org.apache.commons.collections.FactoryUtils
3
4class TaskProcedure {
5
6    Task linkedTask
7    Person createdBy
8    Person lastUpdatedBy
9    Date dateCreated = new Date() // autoTimestamp
10    Date lastUpdated = new Date() // autoTimestamp
11
12    def getDescription() { linkedTask.description }
13    def getAsset() { linkedTask.primaryAsset }
14
15    List maintenanceActions = new ArrayList()
16    List documentReferences = new ArrayList()
17
18    static hasMany = [tasks: Task,
19                                    maintenanceActions: MaintenanceAction,
20                                    documentReferences: DocumentReference]
21
22    def getMaintenanceActionLazyList() {
23        return LazyList.decorate(maintenanceActions, FactoryUtils.instantiateFactory(MaintenanceAction.class))
24    }
25
26    def getDocumentReferenceLazyList() {
27        return LazyList.decorate(documentReferences, FactoryUtils.instantiateFactory(DocumentReference.class))
28    }
29
30    static mappedBy = [tasks:"taskProcedure"]
31
32    static mapping = {
33        maintenanceActions cascade:"all-delete-orphan"
34        documentReferences cascade:"all-delete-orphan"
35    }
36
37//     static belongsTo = []
38
39    static constraints = {
40    }
41
42    String toString() {
43        "${this.id}"
44    }
45}
Note: See TracBrowser for help on using the repository browser.