| MailingListRequest.java |
1 /**
2 * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22
23 package com.liferay.portlet.messageboards.messaging;
24
25 /**
26 * <a href="MailingListRequest.java.html"><b><i>View Source</i></b></a>
27 *
28 * @author Thiago Moreira
29 */
30 public class MailingListRequest {
31
32 public long getCategoryId() {
33 return _categoryId;
34 }
35
36 public long getCompanyId() {
37 return _companyId;
38 }
39
40 public String getInPassword() {
41 return _inPassword;
42 }
43
44 public String getInProtocol() {
45 return _inProtocol;
46 }
47
48 public String getInServerName() {
49 return _inServerName;
50 }
51
52 public int getInServerPort() {
53 return _inServerPort;
54 }
55
56 public String getInUserName() {
57 return _inUserName;
58 }
59
60 public boolean isInUseSSL() {
61 return _inUseSSL;
62 }
63
64 public long getUserId() {
65 return _userId;
66 }
67
68 public void setCategoryId(long id) {
69 _categoryId = id;
70 }
71
72 public void setCompanyId(long id) {
73 _companyId = id;
74 }
75
76 public void setInPassword(String inPassword) {
77 _inPassword = inPassword;
78 }
79
80 public void setInProtocol(String inProtocol) {
81 _inProtocol = inProtocol;
82 }
83
84 public void setInServerName(String inServerName) {
85 _inServerName = inServerName;
86 }
87
88 public void setInServerPort(int inServerPort) {
89 _inServerPort = inServerPort;
90 }
91
92 public void setInUserName(String inUserName) {
93 _inUserName = inUserName;
94 }
95
96 public void setInUseSSL(boolean inUseSSL) {
97 _inUseSSL = inUseSSL;
98 }
99
100 public void setUserId(long id) {
101 _userId = id;
102 }
103
104 private long _categoryId;
105 private long _companyId;
106 private String _inPassword;
107 private String _inProtocol;
108 private String _inServerName;
109 private int _inServerPort;
110 private String _inUserName;
111 private boolean _inUseSSL;
112 private long _userId;
113
114 }