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:
017: /**
018: * Default constructor
019: */
020: public ConnectionProfile() {
021: super ();
022: }
023:
024: /**
025: * @return Returns the fetchPort.
026: */
027: public int getIFetchPort() {
028: return Integer.parseInt(fetchPort);
029: }
030:
031: /**
032: * @return Returns the fetchServer.
033: */
034: public String getFetchServer() {
035: return fetchServer;
036: }
037:
038: /**
039: * @param fetchServer The fetchServer to set.
040: */
041: public void setFetchServer(String fetchServer) {
042: this .fetchServer = fetchServer;
043: }
044:
045: /**
046: * @return Returns the smtpPort.
047: */
048: public int getISmtpPort() {
049: return Integer.parseInt(smtpPort);
050: }
051:
052: /**
053: * @return Returns the smtpServer.
054: */
055: public String getSmtpServer() {
056: return smtpServer;
057: }
058:
059: /**
060: * @param smtpServer The smtpServer to set.
061: */
062: public void setSmtpServer(String smtpServer) {
063: this .smtpServer = smtpServer;
064: }
065:
066: /**
067: * @return Returns the protocol.
068: */
069: public String getProtocol() {
070: return protocol;
071: }
072:
073: /**
074: * @param protocol The protocol to set.
075: */
076: public void setProtocol(String protocol) {
077: this .protocol = protocol;
078: }
079:
080: /**
081: * @return
082: */
083: public String getShortName() {
084: return shortName;
085: }
086:
087: /**
088: * @param string
089: */
090: public void setShortName(String string) {
091: shortName = string;
092: }
093:
094: /**
095: * @return
096: */
097: public String getFetchPort() {
098: return fetchPort;
099: }
100:
101: /**
102: * @return
103: */
104: public String getSmtpPort() {
105: return smtpPort;
106: }
107:
108: /**
109: * @param string
110: */
111: public void setFetchPort(String string) {
112: fetchPort = string;
113: }
114:
115: /**
116: * @param string
117: */
118: public void setSmtpPort(String string) {
119: smtpPort = string;
120: }
121:
122: /**
123: * @return
124: */
125: public String getSmtpAuthenticated() {
126: return smtpAuthenticated;
127: }
128:
129: /**
130: * @param string
131: */
132: public void setSmtpAuthenticated(String string) {
133: smtpAuthenticated = string;
134: }
135:
136: public String getFolderNameSpace() {
137: return folderNameSpace;
138: }
139:
140: public void setFolderNameSpace(String folderNameSpace) {
141: this.folderNameSpace = folderNameSpace;
142: }
143:
144: }
|