1
2 package olr.om;
3
4
5 import org.apache.torque.TorqueException;
6 import org.apache.torque.om.Persistent;
7
8 /***
9 * The skeleton for this class was autogenerated by Torque on:
10 *
11 * [Wed Jun 16 21:12:50 CEST 2004]
12 *
13 * You should add additional methods to this class to meet the
14 * application requirements. This class will only be generated as
15 * long as it does not already exist in the output directory.
16 */
17 public class RdfNamespace
18 extends olr.om.BaseRdfNamespace
19 implements Persistent
20 {
21 public RdfNamespace() {}
22
23 public RdfNamespace(String namespace, RdfUser user)
24 throws TorqueException
25 {
26 this(namespace);
27 this.setRdfUser(user);
28 }
29
30 public RdfNamespace(String namespace)
31 throws TorqueException
32 {
33 this.setNsName(namespace);
34 }
35
36 public RdfNamespace(int id)
37 throws TorqueException
38 {
39 this.setId(id);
40 }
41 }