KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portal > community > CommunityPortal


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.services.portal.community;
6
7 /**
8  * @author Tuan Nguyen (tuan08@users.sourceforge.net)
9  * @since Dec 4, 2004
10  * @version $Id$
11  */

12 public class CommunityPortal {
13   private String JavaDoc groupId ;
14   private String JavaDoc membership ;
15   private String JavaDoc portal ;
16   private int priority ;
17   private String JavaDoc description ;
18   
19   public String JavaDoc getGroupId() { return groupId ; }
20   public void setGroupId(String JavaDoc s) { groupId = s ; }
21   
22   public String JavaDoc getMembership() { return membership ; }
23   public void setMembership(String JavaDoc s) { membership = s ; }
24   
25   public String JavaDoc getPortal() { return portal ; }
26   public void setPortal(String JavaDoc s) { portal = s ; }
27   
28   public int getPriority() { return priority ; }
29   public void setPriority(int i) { priority = i ; }
30   
31   public String JavaDoc getDescription() { return description ; }
32   public void setDescription(String JavaDoc s) { description = s ; }
33 }
Popular Tags