1 package org.javabb.vh; 2 3 public class ForumConfigView { 4 private String theme; 5 6 private String domain; 7 8 private String forumName; 9 10 private String lang; 11 12 private String dateFormat; 13 14 private String timeFormat; 15 16 private String buttonLang; 17 18 private String topicsPage; 19 20 private String postsPage; 21 22 private String notifyTopic; 23 24 private String smtpHost; 25 26 private String smtpUser; 27 28 private String smtpPassword; 29 30 private String adminMail; 31 32 private String floodControl; 33 34 private String forumAnnounceText; 35 36 39 public String getDateFormat() { 40 return dateFormat; 41 } 42 43 47 public void setDateFormat(String dateFormat) { 48 this.dateFormat = dateFormat; 49 } 50 51 54 public String getDomain() { 55 return domain; 56 } 57 58 62 public void setDomain(String domain) { 63 this.domain = domain; 64 } 65 66 69 public String getForumName() { 70 return forumName; 71 } 72 73 77 public void setForumName(String forumName) { 78 this.forumName = forumName; 79 } 80 81 84 public String getLang() { 85 return lang; 86 } 87 88 92 public void setLang(String lang) { 93 this.lang = lang; 94 } 95 96 99 public String getPostsPage() { 100 return postsPage; 101 } 102 103 107 public void setPostsPage(String postsPage) { 108 this.postsPage = postsPage; 109 } 110 111 114 public String getTheme() { 115 return theme; 116 } 117 118 122 public void setTheme(String theme) { 123 this.theme = theme; 124 } 125 126 129 public String getTimeFormat() { 130 return timeFormat; 131 } 132 133 137 public void setTimeFormat(String timeFormat) { 138 this.timeFormat = timeFormat; 139 } 140 141 144 public String getTopicsPage() { 145 return topicsPage; 146 } 147 148 152 public void setTopicsPage(String topicsPage) { 153 this.topicsPage = topicsPage; 154 } 155 156 159 public String getButtonLang() { 160 return buttonLang; 161 } 162 163 167 public void setButtonLang(String buttonLang) { 168 this.buttonLang = buttonLang; 169 } 170 171 174 public String getNotifyTopic() { 175 return notifyTopic; 176 } 177 178 182 public void setNotifyTopic(String notifyTopic) { 183 this.notifyTopic = notifyTopic; 184 } 185 186 189 public String getSmtpHost() { 190 return smtpHost; 191 } 192 193 197 public void setSmtpHost(String smtpHost) { 198 this.smtpHost = smtpHost; 199 } 200 201 204 public String getSmtpPassword() { 205 return smtpPassword; 206 } 207 208 212 public void setSmtpPassword(String smtpPassword) { 213 this.smtpPassword = smtpPassword; 214 } 215 216 219 public String getSmtpUser() { 220 return smtpUser; 221 } 222 223 227 public void setSmtpUser(String smtpUser) { 228 this.smtpUser = smtpUser; 229 } 230 231 234 public String getAdminMail() { 235 return adminMail; 236 } 237 238 242 public void setAdminMail(String adminMail) { 243 this.adminMail = adminMail; 244 } 245 246 249 public String getFloodControl() { 250 return floodControl; 251 } 252 253 257 public void setFloodControl(String floodControl) { 258 this.floodControl = floodControl; 259 } 260 261 public String getForumAnnounceText() { 262 return forumAnnounceText; 263 } 264 265 public void setForumAnnounceText(String forumAnnounceText) { 266 this.forumAnnounceText = (forumAnnounceText != null && !"" 267 .equals(forumAnnounceText)) ? forumAnnounceText.replaceAll( 268 "\"", "'") : forumAnnounceText; 269 } 270 } | Popular Tags |