1 5 package org.exoplatform.services.portletcontainer.pci.model; 6 7 import java.util.*; 8 9 15 public class PortletApp { 16 private List portlet ; 17 private String version ; 18 private List customWindowState ; 19 private List customPortletMode ; 20 private List securityConstraint ; 21 private List userAttribute ; 22 private String id ; 23 24 public PortletApp() { 25 portlet = new ArrayList() ; 26 customWindowState = new ArrayList() ; 27 customPortletMode = new ArrayList() ; 28 securityConstraint = new ArrayList() ; 29 userAttribute = new ArrayList() ; 30 } 31 32 public List getPortlet() { return this.portlet ; } 33 public void addPortlet(Portlet p) { this.portlet.add(p) ; } 34 35 public String getVersion() { return this.version ; } 36 public void setVersion(String value) { this.version = value ; } 37 38 39 public List getCustomWindowState() { return this.customWindowState ; } 40 public void addCustomWindowState(CustomWindowState value) { 41 this.customWindowState.add(value) ; 42 } 43 44 public List getCustomPortletMode() { return this.customPortletMode ;} 45 public void addCustomPortletMode(CustomPortletMode mode) { 46 this.customPortletMode.add(mode) ; 47 } 48 49 public List getSecurityConstraint() { return this.securityConstraint ; } 50 public void addSecurityConstraint(SecurityConstraint sc) { 51 this.securityConstraint.add(sc) ; 52 } 53 54 public List getUserAttribute() { return userAttribute ; } 55 public void addUserAttribute(UserAttribute att) { 56 this.userAttribute.add(att) ; 57 } 58 59 public String getId() { return this.id ; } 60 61 public void setId(String value) { this.id = value ; } 62 } | Popular Tags |