KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > server > user > ServerObjectContext


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9 package org.jboss.portal.server.user;
10
11 import java.io.Serializable JavaDoc;
12
13 import org.jboss.portal.server.ServerObjectID;
14
15 /**
16  * The state held by a user for a given portal object.
17  *
18  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
19  * @version $Revision: 1.2 $
20  */

21 public interface ServerObjectContext extends Serializable JavaDoc
22 {
23    /**
24     * The portal object id related to this context.
25     *
26     * @return the related portal object id.
27     */

28    ServerObjectID getID();
29 }
30
Popular Tags