KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portal > impl > PortalGroupRoleConfig


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.impl;
6
7 import java.util.* ;
8 /**
9  * @author Tuan Nguyen (tuan08@users.sourceforge.net)
10  * @since Oct 27, 2004
11  * @version $Id: PortalGroupRoleConfig.java,v 1.1 2004/10/28 15:39:41 tuan08 Exp $
12  */

13 public class PortalGroupRoleConfig {
14   private List portalRule ;
15   private List navigationRule ;
16   
17   public List getNavigationRule() { return navigationRule; }
18   public void setNavigationRule(List l) { this.navigationRule = l; }
19   
20   public List getPortalRule() { return portalRule; }
21   public void setPortalRule(List l) { this.portalRule = l; }
22   
23   
24   static public class InterceptorRule {
25     private String JavaDoc role ;
26     private String JavaDoc configuration ;
27     
28     public String JavaDoc getConfiguration() { return configuration; }
29     public void setConfiguration(String JavaDoc s) { this.configuration = s; }
30     
31     public String JavaDoc getRole() { return role; }
32     public void setRole(String JavaDoc role) { this.role = role; }
33   }
34 }
35
Popular Tags