KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > ipanema > security > registry > AuthorityLinkID


1 /*
2  * Created on 09.07.2004
3  *
4  */

5 package com.nightlabs.ipanema.security.registry;
6
7 import com.nightlabs.jdo.BaseObjectID;
8 import com.nightlabs.jdo.ObjectIDException;
9
10 /**
11  * @author Niklas Schiffler <nick@nightlabs.de>
12  *
13  */

14 public class AuthorityLinkID extends BaseObjectID
15 {
16     public String JavaDoc objectID;
17     
18     public static AuthorityLinkID create(String JavaDoc objectID)
19     {
20         AuthorityLinkID n = new AuthorityLinkID();
21         n.objectID = objectID;
22         return n;
23     }
24
25     public AuthorityLinkID() { }
26
27     /**
28      * @param keyStr
29      * @throws ObjectIDException
30      */

31     public AuthorityLinkID(String JavaDoc keyStr)
32         throws ObjectIDException
33     {
34         super(keyStr);
35     }
36
37 }
38
Popular Tags