Index: trunk/grails-app/domain/MaintenanceAction.groovy
===================================================================
--- trunk/grails-app/domain/MaintenanceAction.groovy	(revision 127)
+++ 	(revision )
@@ -1,33 +1,0 @@
-class TaskAction {
-    Task task
-    MaintenancePolicy maintenancePolicy
-    SystemSection systemSection
-    Asset asset
-    AssetType assetType
-    Assembly assembly
-    SubAssembly subAssembly
-    ComponentItem componentItem
-    String action
-    String reasoning = ""
-    Integer stepNumber
-    boolean isActive = true
-
-//     static hasMany = []
-
-//     static belongsTo = []
-
-    static constraints = {
-        systemSection(blank:true, nullable:true)
-        asset(blank:true, nullable:true)
-        assetType(blank:true, nullable:true)
-        assembly(blank:true, nullable:true)
-        subAssembly(blank:true, nullable:true)
-        componentItem(blank:true, nullable:true)
-        stepNumber(blank:true, nullable:true)
-    }
-
-    String toString() {
-        "${this.action}"
-    }
-}
-
Index: trunk/grails-app/domain/PlannedMaintenance.groovy
===================================================================
--- trunk/grails-app/domain/PlannedMaintenance.groovy	(revision 127)
+++ 	(revision )
@@ -1,20 +1,0 @@
-class PlannedMaintenance {
-
-    RecurringSchedule recurringSchedule
-
-    String name
-    String description = ""
-    boolean isActive = true
-
-    static hasMany = [maintenanceActions: MaintenanceAction]
-
-//     static belongsTo = []
-
-//     static constraints = {
-//     }
-
-    String toString() {
-        "${this.name}"
-    }
-}
-
Index: trunk/grails-app/domain/RecurringSchedule.groovy
===================================================================
--- trunk/grails-app/domain/RecurringSchedule.groovy	(revision 127)
+++ 	(revision )
@@ -1,25 +1,0 @@
-class TaskRecurringSchedule {
-
-    Task task
-//     Task lastGeneratedSubTask
-    Period period
-
-    Integer recurEvery
-    Date startDate = new Date()
-    Date lastGeneratedDate
-    Date nextDueDate
-    boolean isActive = true
-
-//     static hasMany = []
-
-    static belongsTo = [Task]
-
-    static constraints = {
-//         lastGeneratedDate(blank:true, nullable:true)
-    }
-
-    String toString() {
-        "Recur every ${recurEvery} ${period}"
-    }
-}
-
Index: trunk/grails-app/domain/TaskAction.groovy
===================================================================
--- trunk/grails-app/domain/TaskAction.groovy	(revision 129)
+++ trunk/grails-app/domain/TaskAction.groovy	(revision 129)
@@ -0,0 +1,33 @@
+class TaskAction {
+    Task task
+    MaintenancePolicy maintenancePolicy
+    SystemSection systemSection
+    Asset asset
+    AssetType assetType
+    Assembly assembly
+    SubAssembly subAssembly
+    ComponentItem componentItem
+    String action
+    String reasoning = ""
+    Integer stepNumber
+    boolean isActive = true
+
+//     static hasMany = []
+
+//     static belongsTo = []
+
+    static constraints = {
+        systemSection(blank:true, nullable:true)
+        asset(blank:true, nullable:true)
+        assetType(blank:true, nullable:true)
+        assembly(blank:true, nullable:true)
+        subAssembly(blank:true, nullable:true)
+        componentItem(blank:true, nullable:true)
+        stepNumber(blank:true, nullable:true)
+    }
+
+    String toString() {
+        "${this.action}"
+    }
+}
+
Index: trunk/grails-app/domain/TaskReccuringSchedule.groovy
===================================================================
--- trunk/grails-app/domain/TaskReccuringSchedule.groovy	(revision 129)
+++ trunk/grails-app/domain/TaskReccuringSchedule.groovy	(revision 129)
@@ -0,0 +1,25 @@
+class TaskRecurringSchedule {
+
+    Task task
+//     Task lastGeneratedSubTask
+    Period period
+
+    Integer recurEvery
+    Date startDate = new Date()
+    Date lastGeneratedDate
+    Date nextDueDate
+    boolean isActive = true
+
+//     static hasMany = []
+
+    static belongsTo = [Task]
+
+    static constraints = {
+//         lastGeneratedDate(blank:true, nullable:true)
+    }
+
+    String toString() {
+        "Recur every ${recurEvery} ${period}"
+    }
+}
+
