001: package org.claros.commons.mail.models;
002:
003: /**
004: * @author Umut Gokbayrak
005: *
006: */
007: public class ConnectionProfile {
008: private String shortName;
009: private String fetchServer;
010: private String fetchPort;
011: private String protocol;
012: private String smtpServer;
013: private String smtpPort;
014: private String smtpAuthenticated;
015: private String folderNameSpace;
016: private String fetchSSL;
017: private String smtpSSL;
018: private boolean supportSort;
019:
020: /**
021: * Default constructor
022: */
023: public ConnectionProfile() {
024: super ();
025: }
026:
027: /**
028: * @return Returns the fetchPort.
029: */
030: public int getIFetchPort() {
031: return Integer.parseInt(fetchPort);
032: }
033:
034: /**
035: * @return Returns the fetchServer.
036: */
037: public String getFetchServer() {
038: return fetchServer;
039: }
040:
041: /**
042: * @param fetchServer The fetchServer to set.
043: */
044: public void setFetchServer(String fetchServer) {
045: this .fetchServer = fetchServer;
046: }
047:
048: /**
049: * @return Returns the smtpPort.
050: */
051: public int getISmtpPort() {
052: return Integer.parseInt(smtpPort);
053: }
054:
055: /**
056: * @return Returns the smtpServer.
057: */
058: public String getSmtpServer() {
059: return smtpServer;
060: }
061:
062: /**
063: * @param smtpServer The smtpServer to set.
064: */
065: public void setSmtpServer(String smtpServer) {
066: this .smtpServer = smtpServer;
067: }
068:
069: /**
070: * @return Returns the protocol.
071: */
072: public String getProtocol() {
073: return protocol;
074: }
075:
076: /**
077: * @param protocol The protocol to set.
078: */
079: public void setProtocol(String protocol) {
080: this .protocol = protocol;
081: }
082:
083: /**
084: * @return
085: */
086: public String getShortName() {
087: return shortName;
088: }
089:
090: /**
091: * @param string
092: */
093: public void setShortName(String string) {
094: shortName = string;
095: }
096:
097: /**
098: * @return
099: */
100: public String getFetchPort() {
101: return fetchPort;
102: }
103:
104: /**
105: * @return
106: */
107: public String getSmtpPort() {
108: return smtpPort;
109: }
110:
111: /**
112: * @param string
113: */
114: public void setFetchPort(String string) {
115: fetchPort = string;
116: }
117:
118: /**
119: * @param string
120: */
121: public void setSmtpPort(String string) {
122: smtpPort = string;
123: }
124:
125: /**
126: * @return
127: */
128: public String getSmtpAuthenticated() {
129: return smtpAuthenticated;
130: }
131:
132: /**
133: * @param string
134: */
135: public void setSmtpAuthenticated(String string) {
136: smtpAuthenticated = string;
137: }
138:
139: public String getFolderNameSpace() {
140: return folderNameSpace;
141: }
142:
143: public void setFolderNameSpace(String folderNameSpace) {
144: this .folderNameSpace = folderNameSpace;
145: }
146:
147: public String getFetchSSL() {
148: return fetchSSL;
149: }
150:
151: public void setFetchSSL(String fetchSSL) {
152: this .fetchSSL = fetchSSL;
153: }
154:
155: public String getSmtpSSL() {
156: return smtpSSL;
157: }
158:
159: public void setSmtpSSL(String smtpSSL) {
160: this .smtpSSL = smtpSSL;
161: }
162:
163: public boolean isSupportSort() {
164: return supportSort;
165: }
166:
167: public void setSupportSort(boolean supportSort) {
168: this.supportSort = supportSort;
169: }
170:
171: }
|