Rev | Line | |
---|
[798] | 1 | import org.apache.commons.collections.list.LazyList |
---|
| 2 | import org.apache.commons.collections.FactoryUtils |
---|
| 3 | |
---|
[131] | 4 | class TaskProcedure { |
---|
| 5 | |
---|
[798] | 6 | Task linkedTask |
---|
| 7 | Person createdBy |
---|
| 8 | Person lastUpdatedBy |
---|
| 9 | Date dateCreated = new Date() // autoTimestamp |
---|
| 10 | Date lastUpdated = new Date() // autoTimestamp |
---|
[131] | 11 | |
---|
[798] | 12 | def getDescription() { linkedTask.description } |
---|
| 13 | def getAsset() { linkedTask.primaryAsset } |
---|
[131] | 14 | |
---|
[798] | 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 | |
---|
[131] | 37 | // static belongsTo = [] |
---|
| 38 | |
---|
| 39 | static constraints = { |
---|
| 40 | } |
---|
| 41 | |
---|
| 42 | String toString() { |
---|
[798] | 43 | "${this.id}" |
---|
[131] | 44 | } |
---|
| 45 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.