1 5 6 package org.exoplatform.services.portletregistery.impl.hibernate; 7 8 import java.util.Date ; 9 import java.util.Set ; 10 import org.exoplatform.services.portletregistery.Portlet; 11 12 13 20 public class PortletImpl implements Portlet{ 21 22 private String id; 23 private String portletCategoryId ; 24 private String portletApplicationName; 25 private String portletName; 26 private String description; 27 private Date createdDate; 28 private Date modifiedDate; 29 private String displayName; 31 private Set portletRoles; 32 33 36 public String getId() { 37 return id; 38 } 39 public void setId(String id) { 40 this.id = id; 41 } 42 43 46 public String getDisplayName() { 47 return displayName; 48 } 49 public void setDisplayName(String displayName) { 50 this.displayName = displayName; 51 } 52 53 56 public String getPortletApplicationName() { 57 return portletApplicationName; 58 } 59 public void setPortletApplicationName(String portletApplicationName) { 60 this.portletApplicationName = portletApplicationName; 61 } 62 63 66 public String getPortletName() { 67 return portletName; 68 } 69 public void setPortletName(String portletName) { 70 this.portletName = portletName; 71 } 72 73 76 public String getDescription() { 77 return description; 78 } 79 public void setDescription(String s) { 80 description = s; 81 } 82 83 86 public Date getCreatedDate() { 87 return createdDate; 88 } 89 public void setCreatedDate(Date d) { 90 createdDate = d; 91 } 92 93 96 public Date getModifiedDate() { 97 return modifiedDate; 98 } 99 public void setModifiedDate(Date d) { 100 modifiedDate = d; 101 } 102 103 104 108 116 117 120 public String getPortletCategoryId() { return portletCategoryId; } 121 public void setPortletCategoryId(String portletCategoryId) { 122 this.portletCategoryId = portletCategoryId; 123 } 124 125 130 139 } | Popular Tags |