KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > pci > model > SecurityConstraint


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.portletcontainer.pci.model;
6
7 /**
8  * Jul 11, 2004
9  * @author: Tuan Nguyen
10  * @email: tuan08@users.sourceforge.net
11  * @version: $Id: SecurityConstraint.java,v 1.1 2004/07/13 02:31:13 tuan08 Exp $
12  */

13 public class SecurityConstraint {
14     private String JavaDoc displayName;
15     private PortletCollection portletCollection;
16     private UserDataConstraint userDataConstraint;
17
18     public String JavaDoc getDisplayName() {
19         return displayName;
20     }
21
22     public void setDisplayName(String JavaDoc displayName) {
23         this.displayName = displayName;
24     }
25
26     public PortletCollection getPortletCollection() {
27         return portletCollection;
28     }
29
30     public void setPortletCollection(PortletCollection portletCollection) {
31         this.portletCollection = portletCollection;
32     }
33
34     public UserDataConstraint getUserDataConstraint() {
35         return userDataConstraint;
36     }
37
38     public void setUserDataConstraint(UserDataConstraint userDataConstraint) {
39         this.userDataConstraint = userDataConstraint;
40     }
41 }
Popular Tags