KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portal > UserConfig


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;
6
7 import java.util.* ;
8 import org.exoplatform.services.portal.model.*;
9 /**
10  * Created by The eXo Platform SARL .
11  * Author : Tuan Nguyen
12  * tuan08@users.sourceforge.net
13  * Date: Jun 14, 2003
14  * Time: 1:12:22 PM
15  */

16 public class UserConfig {
17   public PortalConfig portalConfig_ ;
18   public List groupConfigs_ ;
19   
20   public UserConfig (PortalConfig pconfig, List gconfigs) {
21     portalConfig_ = pconfig ;
22     groupConfigs_ = gconfigs ;
23   }
24   
25   public PortalConfig getUserPortalConfig() {
26     return portalConfig_ ;
27   
28   }
29   
30   public List getGroupConfigs() {
31     return groupConfigs_ ;
32   }
33 }
34
Popular Tags