KickJava   Java API By Example, From Geeks To Geeks.

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


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 import java.util.* ;
8 /**
9  * @author Tuan Nguyen (tuan08@users.sourceforge.net)
10  * @since Dec 4, 2004
11  * @version $Id$
12  */

13 public class CommunityConfig {
14   private List communityPortals = new ArrayList(3);
15   private List communityNavigations = new ArrayList();
16   
17   public List getCommunityPortals() { return communityPortals ; }
18   public void setCommunityPortals(List list) { communityPortals = list ; }
19   
20   public List getCommunityNavigations() { return communityNavigations ; }
21   public void setCommunityNavigations(List list) { communityNavigations = list ; }
22 }
23
Popular Tags