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   */
31  public class MailingListRequest {
32  
33      public long getCategoryId() {
34          return _categoryId;
35      }
36  
37      public long getCompanyId() {
38          return _companyId;
39      }
40  
41      public String getInPassword() {
42          return _inPassword;
43      }
44  
45      public String getInProtocol() {
46          return _inProtocol;
47      }
48  
49      public String getInServerName() {
50          return _inServerName;
51      }
52  
53      public int getInServerPort() {
54          return _inServerPort;
55      }
56  
57      public String getInUserName() {
58          return _inUserName;
59      }
60  
61      public boolean isInUseSSL() {
62          return _inUseSSL;
63      }
64  
65      public long getUserId() {
66          return _userId;
67      }
68  
69      public void setCategoryId(long id) {
70          _categoryId = id;
71      }
72  
73      public void setCompanyId(long id) {
74          _companyId = id;
75      }
76  
77      public void setInPassword(String inPassword) {
78          _inPassword = inPassword;
79      }
80  
81      public void setInProtocol(String inProtocol) {
82          _inProtocol = inProtocol;
83      }
84  
85      public void setInServerName(String inServerName) {
86          _inServerName = inServerName;
87      }
88  
89      public void setInServerPort(int inServerPort) {
90          _inServerPort = inServerPort;
91      }
92  
93      public void setInUserName(String inUserName) {
94          _inUserName = inUserName;
95      }
96  
97      public void setInUseSSL(boolean inUseSSL) {
98          _inUseSSL = inUseSSL;
99      }
100 
101     public void setUserId(long id) {
102         _userId = id;
103     }
104 
105     private long _categoryId;
106     private long _companyId;
107     private String _inPassword;
108     private String _inProtocol;
109     private String _inServerName;
110     private int _inServerPort;
111     private String _inUserName;
112     private boolean _inUseSSL;
113     private long _userId;
114 
115 }