KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > ipanema > organisation > id > OrganisationID


1 /*
2  * Created on 23.02.2004
3  */

4 package com.nightlabs.ipanema.organisation.id;
5
6 import com.nightlabs.jdo.BaseObjectID;
7 import com.nightlabs.jdo.ObjectIDException;
8
9 /**
10  * object-id class for jdo application managed of class Organisation.
11  *
12  * @author marco
13  */

14 public class OrganisationID extends BaseObjectID
15 {
16     public static OrganisationID create(String JavaDoc _organisationID)
17     {
18         OrganisationID n = new OrganisationID();
19         n.organisationID = _organisationID;
20         return n;
21     }
22     
23     public OrganisationID() { }
24     public OrganisationID(String JavaDoc keyStr)
25         throws ObjectIDException
26     {
27         super(keyStr);
28     }
29     
30   public String JavaDoc organisationID;
31   
32 // /**
33
// * @return Returns the organisationID.
34
// */
35
// public String getOrganisationID() {
36
// return organisationID;
37
// }
38

39 }
40
Popular Tags