01: package org.tigris.scarab.om.map;
02:
03: import java.util.Date;
04: import java.math.BigDecimal;
05:
06: import org.apache.torque.Torque;
07: import org.apache.torque.TorqueException;
08: import org.apache.torque.map.MapBuilder;
09: import org.apache.torque.map.DatabaseMap;
10: import org.apache.torque.map.TableMap;
11:
12: /**
13: */
14: public class RModuleOptionMapBuilder implements MapBuilder {
15: /**
16: * The name of this class
17: */
18: public static final String CLASS_NAME = "org.tigris.scarab.om.map.RModuleOptionMapBuilder";
19:
20: /**
21: * The database map.
22: */
23: private DatabaseMap dbMap = null;
24:
25: /**
26: * Tells us if this DatabaseMapBuilder is built so that we
27: * don't have to re-build it every time.
28: *
29: * @return true if this DatabaseMapBuilder is built
30: */
31: public boolean isBuilt() {
32: return (dbMap != null);
33: }
34:
35: /**
36: * Gets the databasemap this map builder built.
37: *
38: * @return the databasemap
39: */
40: public DatabaseMap getDatabaseMap() {
41: return this .dbMap;
42: }
43:
44: /**
45: * The doBuild() method builds the DatabaseMap
46: *
47: * @throws TorqueException
48: */
49: public void doBuild() throws TorqueException {
50: dbMap = Torque.getDatabaseMap("scarab");
51:
52: dbMap.addTable("SCARAB_R_MODULE_OPTION");
53: TableMap tMap = dbMap.getTable("SCARAB_R_MODULE_OPTION");
54:
55: tMap.setPrimaryKeyMethod("none");
56:
57: tMap.addForeignPrimaryKey("SCARAB_R_MODULE_OPTION.MODULE_ID",
58: new Integer(0), "SCARAB_MODULE", "MODULE_ID");
59: tMap.addForeignPrimaryKey(
60: "SCARAB_R_MODULE_OPTION.ISSUE_TYPE_ID", new Integer(0),
61: "SCARAB_ISSUE_TYPE", "ISSUE_TYPE_ID");
62: tMap.addForeignPrimaryKey("SCARAB_R_MODULE_OPTION.OPTION_ID",
63: new Integer(0), "SCARAB_ATTRIBUTE_OPTION", "OPTION_ID");
64: tMap.addColumn("SCARAB_R_MODULE_OPTION.DISPLAY_VALUE", "");
65: tMap.addColumn("SCARAB_R_MODULE_OPTION.ACTIVE", new Integer(0));
66: tMap.addColumn("SCARAB_R_MODULE_OPTION.PREFERRED_ORDER",
67: new Integer(0));
68: tMap.addColumn("SCARAB_R_MODULE_OPTION.WEIGHT", new Integer(0));
69: }
70: }
|