1 5 package org.exoplatform.services.portal; 6 7 import java.util.* ; 8 import org.exoplatform.services.portal.model.*; 9 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 |