Index: trunk/grails-app/domain/Assembly.groovy
===================================================================
--- trunk/grails-app/domain/Assembly.groovy	(revision 265)
+++ 	(revision )
@@ -1,21 +1,0 @@
-class Assembly {
-
-    AssetType assetType
-
-    String name
-    String description = ""
-    boolean isActive = true
-
-    static hasMany = [subAssemblies: SubAssembly, maintenanceActions: MaintenanceAction]
-
-    static belongsTo = [AssetType]
-
-//     static constraints = {
-// 
-//     }
-
-    String toString() {
-        "${this.name}"
-    }
-}
-
Index: trunk/grails-app/domain/AssetExtendedAttributeType.groovy
===================================================================
--- trunk/grails-app/domain/AssetExtendedAttributeType.groovy	(revision 265)
+++ 	(revision )
@@ -1,19 +1,0 @@
-class AssetExtendedAttributeType {
-
-    String name
-    String description = ""
-    boolean isActive = true
-
-    static hasMany = [assetExtendedAttributes: AssetExtendedAttribute]
-
-//     static belongsTo = []
-
-//     static constraints = {
-// 
-//     }
-
-    String toString() {
-        "${this.name}"
-    }
-}
-
Index: trunk/grails-app/domain/AssetSubItem.groovy
===================================================================
--- trunk/grails-app/domain/AssetSubItem.groovy	(revision 267)
+++ trunk/grails-app/domain/AssetSubItem.groovy	(revision 267)
@@ -0,0 +1,22 @@
+class AssetType {
+
+    String name
+    String description = ""
+    String costCode = ""
+    boolean isActive = true
+
+    static hasMany = [assets: Asset, 
+                                    assemblies: Assembly,
+                                    maintenanceActions: MaintenanceAction]
+
+//     static belongsTo = []
+
+//     static constraints = {
+// 
+//     }
+
+    String toString() {
+        "${this.name}"
+    }
+}
+
Index: trunk/grails-app/domain/AssetType.groovy
===================================================================
--- trunk/grails-app/domain/AssetType.groovy	(revision 265)
+++ 	(revision )
@@ -1,22 +1,0 @@
-class AssetType {
-
-    String name
-    String description = ""
-    String costCode = ""
-    boolean isActive = true
-
-    static hasMany = [assets: Asset, 
-                                    assemblies: Assembly,
-                                    maintenanceActions: MaintenanceAction]
-
-//     static belongsTo = []
-
-//     static constraints = {
-// 
-//     }
-
-    String toString() {
-        "${this.name}"
-    }
-}
-
Index: trunk/grails-app/domain/ComponentItem.groovy
===================================================================
--- trunk/grails-app/domain/ComponentItem.groovy	(revision 265)
+++ 	(revision )
@@ -1,21 +1,0 @@
-class ComponentItem {
-
-    SubAssembly subAssembly
-
-    String name
-    String description = ""
-    boolean isActive = true
-
-    static hasMany = [maintenanceActions: MaintenanceAction]
-
-    static belongsTo = [SubAssembly]
-
-//     static constraints = {
-// 
-//     }
-
-    String toString() {
-        "${this.name}"
-    }
-}
-
Index: trunk/grails-app/domain/ExtendedAttributeType.groovy
===================================================================
--- trunk/grails-app/domain/ExtendedAttributeType.groovy	(revision 267)
+++ trunk/grails-app/domain/ExtendedAttributeType.groovy	(revision 267)
@@ -0,0 +1,19 @@
+class AssetExtendedAttributeType {
+
+    String name
+    String description = ""
+    boolean isActive = true
+
+    static hasMany = [assetExtendedAttributes: AssetExtendedAttribute]
+
+//     static belongsTo = []
+
+//     static constraints = {
+// 
+//     }
+
+    String toString() {
+        "${this.name}"
+    }
+}
+
Index: trunk/grails-app/domain/SubAssembly.groovy
===================================================================
--- trunk/grails-app/domain/SubAssembly.groovy	(revision 265)
+++ 	(revision )
@@ -1,22 +1,0 @@
-class SubAssembly {
-
-    Assembly assembly
-
-    String name
-    String description = ""
-    boolean isActive = true
-
-    static hasMany = [componentItems: ComponentItem,
-                                    maintenanceActions: MaintenanceAction]
-
-    static belongsTo = [Assembly]
-
-//     static constraints = {
-// 
-//     }
-
-    String toString() {
-        "${this.name}"
-    }
-}
-
