1 package de.iqser.beans;
2
3 public class ContentBean {
4 private boolean contentFetched= false;
5 private long contentId= -1;
6 private long relatedContentId= -1;
7 private String title= "";
8 private String type= null;
9 private String contentProvider= "";
10 private float score= 0.1f;
11 private long DmsId= -1;
12 private long parentFolderId= -1;
13 private String lfFileName= null;
14 private String text= null;
15 private String relationReasons= null;
16 private String dmsUrl= null;
17 private String author= "";
18 private String creationDate= "";
19 private String changeDate= "";
20 private String searchInput= null;
21
22 public long getContentId() {
23 return contentId;
24 }
25 public void setContentId(long contentId) {
26 this.contentId = contentId;
27 }
28
29 public String getTitle() {
30 return title;
31 }
32 public void setTitle(String title) {
33 this.title = title;
34 }
35 public String getType() {
36 return type;
37 }
38 public void setType(String type) {
39 this.type = type;
40 }
41 public float getScore() {
42 return score;
43 }
44 public void setScore(float score) {
45 this.score = score;
46 }
47 public long getDmsId() {
48 return DmsId;
49 }
50 public void setDmsId(long dmsId) {
51 DmsId = dmsId;
52 }
53 public String getText() {
54 return text;
55 }
56 public void setText(String text) {
57 this.text = text;
58 }
59 public long getParentFolderId() {
60 return parentFolderId;
61 }
62 public void setParentFolderId(long parentFolderId) {
63 this.parentFolderId = parentFolderId;
64 }
65 public String getLfFileName() {
66 return lfFileName;
67 }
68 public void setLfFileName(String lfFileName) {
69 this.lfFileName = lfFileName;
70 }
71 public String getDmsUrl() {
72 return dmsUrl;
73 }
74 public void setDmsUrl(String dmsUrl) {
75 this.dmsUrl = dmsUrl;
76 }
77 public String getAuthor() {
78 return author;
79 }
80 public void setAuthor(String author) {
81 this.author = author;
82 }
83 public String getCreationDate() {
84 return creationDate;
85 }
86 public void setCreationDate(String creationDate) {
87 this.creationDate = creationDate;
88 }
89 public boolean isContentFetched() {
90 return contentFetched;
91 }
92 public void setContentFetched(boolean contentFetched) {
93 this.contentFetched = contentFetched;
94 }
95 public String getChangeDate() {
96 return changeDate;
97 }
98 public void setChangeDate(String changeDate) {
99 this.changeDate = changeDate;
100 }
101 public long getRelatedContentId() {
102 return relatedContentId;
103 }
104 public void setRelatedContentId(long relatedContentId) {
105 this.relatedContentId = relatedContentId;
106 }
107 public String getContentProvider() {
108 return contentProvider;
109 }
110 public void setContentProvider(String contentProvider) {
111 this.contentProvider = contentProvider;
112 }
113 public String getRelationReasons() {
114 return relationReasons;
115 }
116 public void setRelationReasons(String relationReasons) {
117 this.relationReasons = relationReasons;
118 }
119 public String getSearchInput() {
120 return searchInput;
121 }
122 public void setSearchInput(String searchInput) {
123 this.searchInput = searchInput;
124 }
125 }