1
14
15 package com.liferay.portlet.social.model;
16
17
22 public class SocialRequestFeedEntry {
23
24 public SocialRequestFeedEntry(String title, String body) {
25 _title = title;
26 _body = body;
27 }
28
29 public String getPortletId() {
30 return _portletId;
31 }
32
33 public void setPortletId(String portletId) {
34 _portletId = portletId;
35 }
36
37 public String getTitle() {
38 return _title;
39 }
40
41 public void setTitle(String title) {
42 _title = title;
43 }
44
45 public String getBody() {
46 return _body;
47 }
48
49 public void setBody(String body) {
50 _body = body;
51 }
52
53 private String _portletId;
54 private String _title;
55 private String _body;
56
57 }