java.lang.Object | ||
↳ | com.ardic.android.parcelables.EmailConfig | |
↳ | com.ardic.android.parcelables.EmailConfigImap |
Implementation of Parcelable Interface for IMAP e-mail account configuration
See also:
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.ardic.android.parcelables.EmailConfig
| |||||||||||
From interface
android.os.Parcelable
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructor method
| |||||||||||
Constructor method
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns outgoing e-mail server Authentication type.
| |||||||||||
Returns outgoing e-mail server port.
| |||||||||||
Returns outgoing e-mail server address.
| |||||||||||
Queries whether login required to send e-mail.
| |||||||||||
Sets outgoing e-mail server authentication type.
| |||||||||||
Sets outgoing e-mail server port.
| |||||||||||
Sets outgoing e-mail server address.
| |||||||||||
Sets whether login required to send e-mail.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.ardic.android.parcelables.EmailConfig
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
android.os.Parcelable
|
Constructor method
Parameters | |
---|---|
displayName |
String :
Display name of the e-mail account on the device. |
username |
String :
Account user name. |
emailAddress |
String :
Email Address of the e-mail account. |
pwd |
String :
Password of the e-mail account |
incomingServerAddress |
String :
incoming e-mail server address. |
incomingPort |
int :
incoming e-mail server port. |
incomingAuth |
int :
incoming e-mail server authentication type. One of AUTH_NONE ,
AUTH_SSL_TLS , AUTH_SSL_TLS_ALL , AUTH_STARTTLS ,
AUTH_STARTTLS_ALL |
senderName |
String :
Sender name shown in outgoing messages. |
signature |
String :
Sender signature shown in outgoing messages. |
syncInterval |
int :
Time to query server for newly arrived e-mail messages. |
outgoingServerAddress |
String :
outgoing e-mail server address. |
outgoingPort |
int :
outgoing e-mail server port. |
outgoingAuth |
int :
outgoing e-mail server authentication type. One of AUTH_NONE ,
AUTH_SSL_TLS , AUTH_SSL_TLS_ALL , AUTH_STARTTLS ,
AUTH_STARTTLS_ALL |
requireLogin |
boolean :
is login required to send e-mail.
|
Constructor method
Parameters | |
---|---|
id |
long :
Account ID. |
displayName |
String :
Display name of the e-mail account on the device. |
username |
String :
Account user name. |
emailAddress |
String :
Email Address of the e-mail account. |
pwd |
String :
Password of the e-mail account |
incomingServerAddress |
String :
incoming e-mail server address. |
incomingPort |
int :
incoming e-mail server port. |
incomingAuth |
int :
incoming e-mail server authentication type. One of AUTH_NONE ,
AUTH_SSL_TLS , AUTH_SSL_TLS_ALL , AUTH_STARTTLS ,
AUTH_STARTTLS_ALL |
senderName |
String :
Sender name shown in outgoing messages. |
signature |
String :
Sender signature shown in outgoing messages. |
syncInterval |
int :
Time to query server for newly arrived e-mail messages. |
outgoingServerAddress |
String :
outgoing e-mail server address. |
outgoingPort |
int :
outgoing e-mail server port. |
outgoingAuth |
int :
outgoing e-mail server authentication type. One of AUTH_NONE ,
AUTH_SSL_TLS , AUTH_SSL_TLS_ALL , AUTH_STARTTLS ,
AUTH_STARTTLS_ALL |
requireLogin |
boolean :
is login required to send e-mail.
|
Returns outgoing e-mail server Authentication type.
One of AUTH_NONE
, AUTH_SSL_TLS
, AUTH_SSL_TLS_ALL
,
AUTH_STARTTLS
, AUTH_STARTTLS_ALL
Returns | |
---|---|
int |
Outgoing e-mail server Authentication type. |
Returns outgoing e-mail server port.
Returns | |
---|---|
int |
Outgoing e-mail server port. |
Returns outgoing e-mail server address.
Returns | |
---|---|
String |
Outgoing e-mail server address. |
Queries whether login required to send e-mail.
Returns | |
---|---|
boolean |
whether login required to send e-mail. |
Sets outgoing e-mail server authentication type.
One of AUTH_NONE
, AUTH_SSL_TLS
, AUTH_SSL_TLS_ALL
,
AUTH_STARTTLS
, AUTH_STARTTLS_ALL
Parameters | |
---|---|
outgoingAuth |
int :
Outgoing e-mail server authentication type.
|
Sets outgoing e-mail server port.
Parameters | |
---|---|
outgoingPort |
int :
Outgoing e-mail server port.
|
Sets outgoing e-mail server address.
Parameters | |
---|---|
outgoingServerAddress |
String :
Outgoing e-mail server address.
|
Sets whether login required to send e-mail.
Parameters | |
---|---|
requireLogin |
boolean :
Whether login required to send e-mail or not.
|