KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portlet > forums > model > Poster


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

11 package org.jboss.portlet.forums.model;
12
13 import org.jboss.portal.core.model.User;
14
15 /**
16  * @author <a HREF="mailto:theute@jboss.org">Thomas Heute</a>
17  * @version $Revision: 1.3 $
18  */

19 public interface Poster
20 {
21    /**
22     * @return Returns the id of the user.
23     */

24    Integer JavaDoc getID();
25
26    /**
27     * DOCUMENT_ME
28     *
29     * @return DOCUMENT_ME
30     */

31    User getUser();
32
33    /**
34     * DOCUMENT_ME
35     *
36     * @return DOCUMENT_ME
37     */

38    int getPostCount();
39
40    /**
41     * DOCUMENT_ME
42     */

43    void incrementPostCount();
44 }
Popular Tags