KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > fulcrum > security > impl > db > entity > map > TurbinePermissionMapBuilder


1 package org.apache.fulcrum.security.impl.db.entity.map;
2
3 import java.util.Date JavaDoc;
4 import java.math.BigDecimal JavaDoc;
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 /**
13   */

14 public class TurbinePermissionMapBuilder implements MapBuilder
15 {
16     /**
17      * The name of this class
18      */

19     public static final String JavaDoc CLASS_NAME =
20         "org.apache.fulcrum.security.impl.db.entity.map.TurbinePermissionMapBuilder";
21
22
23     /**
24      * The database map.
25      */

26     private DatabaseMap dbMap = null;
27
28     /**
29      * Tells us if this DatabaseMapBuilder is built so that we
30      * don't have to re-build it every time.
31      *
32      * @return true if this DatabaseMapBuilder is built
33      */

34     public boolean isBuilt()
35     {
36         return (dbMap != null);
37     }
38
39     /**
40      * Gets the databasemap this map builder built.
41      *
42      * @return the databasemap
43      */

44     public DatabaseMap getDatabaseMap()
45     {
46         return this.dbMap;
47     }
48
49     /**
50      * The doBuild() method builds the DatabaseMap
51      *
52      * @throws TorqueException
53      */

54     public void doBuild() throws TorqueException
55     {
56         dbMap = Torque.getDatabaseMap("scarab");
57
58         dbMap.addTable("TURBINE_PERMISSION");
59         TableMap tMap = dbMap.getTable("TURBINE_PERMISSION");
60
61         tMap.setPrimaryKeyMethod(TableMap.ID_BROKER);
62
63         tMap.setPrimaryKeyMethodInfo(tMap.getName());
64
65               tMap.addPrimaryKey("TURBINE_PERMISSION.PERMISSION_ID", new Integer JavaDoc(0));
66                     tMap.addColumn("TURBINE_PERMISSION.PERMISSION_NAME", new String JavaDoc());
67           }
68 }
69
Popular Tags