1 package org.tigris.scarab.om.map; 2 3 import java.util.Date ; 4 import java.math.BigDecimal ; 5 6 import org.apache.torque.Torque; 7 import org.apache.torque.TorqueException; 8 import org.apache.torque.map.MapBuilder; 9 import org.apache.torque.map.DatabaseMap; 10 import org.apache.torque.map.TableMap; 11 12 14 public class ReportMapBuilder implements MapBuilder 15 { 16 19 public static final String CLASS_NAME = 20 "org.tigris.scarab.om.map.ReportMapBuilder"; 21 22 23 26 private DatabaseMap dbMap = null; 27 28 34 public boolean isBuilt() 35 { 36 return (dbMap != null); 37 } 38 39 44 public DatabaseMap getDatabaseMap() 45 { 46 return this.dbMap; 47 } 48 49 54 public void doBuild() throws TorqueException 55 { 56 dbMap = Torque.getDatabaseMap("scarab"); 57 58 dbMap.addTable("SCARAB_REPORT"); 59 TableMap tMap = dbMap.getTable("SCARAB_REPORT"); 60 61 tMap.setPrimaryKeyMethod(TableMap.ID_BROKER); 62 63 tMap.setPrimaryKeyMethodInfo(tMap.getName()); 64 65 tMap.addPrimaryKey("SCARAB_REPORT.REPORT_ID", new Integer (0)); 66 tMap.addForeignKey( 67 "SCARAB_REPORT.USER_ID", new Integer (0) , "TURBINE_USER" , 68 "USER_ID"); 69 tMap.addForeignKey( 70 "SCARAB_REPORT.MODULE_ID", new Integer (0) , "SCARAB_MODULE" , 71 "MODULE_ID"); 72 tMap.addForeignKey( 73 "SCARAB_REPORT.ISSUE_TYPE_ID", new Integer (0) , "SCARAB_ISSUE_TYPE" , 74 "ISSUE_TYPE_ID"); 75 tMap.addColumn("SCARAB_REPORT.NAME", ""); 76 tMap.addColumn("SCARAB_REPORT.DESCRIPTION", ""); 77 tMap.addColumn("SCARAB_REPORT.QUERY_STRING", ""); 78 tMap.addForeignKey( 79 "SCARAB_REPORT.SCOPE_ID", new Integer (0) , "SCARAB_SCOPE" , 80 "SCOPE_ID"); 81 tMap.addColumn("SCARAB_REPORT.DELETED", new Integer (0)); 82 tMap.addColumn("SCARAB_REPORT.CREATED_DATE", new Date ()); 83 } 84 } 85 | Popular Tags |