1 5 package org.exoplatform.services.portletcontainer.pci.model; 6 7 13 public class PortletInfo { 14 private String title; 15 private String shortTitle; 16 private String keywords; 17 18 public String getKeywords() { 19 return keywords; 20 } 21 22 public void setKeywords(String keywords) { 23 this.keywords = keywords; 24 } 25 26 public String getShortTitle() { 27 return shortTitle; 28 } 29 30 public void setShortTitle(String shortTitle) { 31 this.shortTitle = shortTitle; 32 } 33 34 public String getTitle() { 35 return title; 36 } 37 38 public void setTitle(String title) { 39 this.title = title; 40 } 41 } | Popular Tags |