HomeSort by relevance Sort by last modified time
    Searched refs:MessagingException (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
Part.java 22 public void addHeader(String name, String value) throws MessagingException;
24 public void removeHeader(String name) throws MessagingException;
26 public void setHeader(String name, String value) throws MessagingException;
28 public Body getBody() throws MessagingException;
30 public String getContentType() throws MessagingException;
32 public String getDisposition() throws MessagingException;
34 public String getContentId() throws MessagingException;
36 public String[] getHeader(String name) throws MessagingException;
38 public void setExtendedHeader(String name, String value) throws MessagingException;
40 public String getExtendedHeader(String name) throws MessagingException;
    [all...]
Multipart.java 27 public void addBodyPart(BodyPart part) throws MessagingException {
31 public void addBodyPart(BodyPart part, int index) throws MessagingException {
35 public BodyPart getBodyPart(int index) throws MessagingException {
39 public String getContentType() throws MessagingException {
43 public int getCount() throws MessagingException {
47 public boolean removeBodyPart(BodyPart part) throws MessagingException {
51 public void removeBodyPart(int index) throws MessagingException {
55 public Part getParent() throws MessagingException {
59 public void setParent(Part parent) throws MessagingException {
AuthenticationFailedException.java 19 public class AuthenticationFailedException extends MessagingException {
23 super(MessagingException.AUTHENTICATION_FAILED, message);
31 super(MessagingException.AUTHENTICATION_FAILED, message, throwable);
Message.java 49 public abstract String getSubject() throws MessagingException;
51 public abstract void setSubject(String subject) throws MessagingException;
61 public abstract Date getReceivedDate() throws MessagingException;
63 public abstract Date getSentDate() throws MessagingException;
65 public abstract void setSentDate(Date sentDate) throws MessagingException;
67 public abstract Address[] getRecipients(String type) throws MessagingException;
69 public abstract void setRecipients(String type, Address[] addresses) throws MessagingException;
71 public void setRecipient(String type, Address address) throws MessagingException {
75 public abstract Address[] getFrom() throws MessagingException;
77 public abstract void setFrom(Address from) throws MessagingException;
    [all...]
Body.java 23 public InputStream getInputStream() throws MessagingException;
25 public void writeTo(OutputStream out) throws IOException, MessagingException;
MessagingException.java 28 public class MessagingException extends Exception {
77 public MessagingException(String message, Throwable throwable) {
81 public MessagingException(int exceptionType, String message, Throwable throwable) {
88 * Constructs a MessagingException with an exceptionType and a null message.
92 public MessagingException(int exceptionType) {
97 * Constructs a MessagingException with a message.
101 public MessagingException(String message) {
106 * Constructs a MessagingException with an exceptionType and a message.
110 public MessagingException(int exceptionType, String message) {
115 * Constructs a MessagingException with an exceptionType, a message, and dat
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Part.java 23 public void addHeader(String name, String value) throws MessagingException;
25 public void removeHeader(String name) throws MessagingException;
27 public void setHeader(String name, String value) throws MessagingException;
29 public Body getBody() throws MessagingException;
31 public String getContentType() throws MessagingException;
33 public String getDisposition() throws MessagingException;
35 public String getContentId() throws MessagingException;
37 public String[] getHeader(String name) throws MessagingException;
39 public void setExtendedHeader(String name, String value) throws MessagingException;
41 public String getExtendedHeader(String name) throws MessagingException;
    [all...]
Multipart.java 28 public void addBodyPart(BodyPart part) throws MessagingException {
32 public void addBodyPart(BodyPart part, int index) throws MessagingException {
36 public BodyPart getBodyPart(int index) throws MessagingException {
40 public String getContentType() throws MessagingException {
44 public int getCount() throws MessagingException {
48 public boolean removeBodyPart(BodyPart part) throws MessagingException {
52 public void removeBodyPart(int index) throws MessagingException {
56 public Part getParent() throws MessagingException {
60 public void setParent(Part parent) throws MessagingException {
Folder.java 68 throws MessagingException;
89 public abstract OpenMode getMode() throws MessagingException;
103 public abstract boolean create(FolderType type) throws MessagingException;
105 public abstract boolean exists() throws MessagingException;
110 public abstract int getMessageCount() throws MessagingException;
112 public abstract int getUnreadMessageCount() throws MessagingException;
114 public abstract Message getMessage(String uid) throws MessagingException;
123 throws MessagingException;
126 throws MessagingException;
129 throws MessagingException;
    [all...]
AuthenticationFailedException.java 20 public class AuthenticationFailedException extends MessagingException {
24 super(MessagingException.AUTHENTICATION_FAILED, message);
32 super(MessagingException.AUTHENTICATION_FAILED, message, throwable);
CertificateValidationException.java 20 public class CertificateValidationException extends MessagingException {
24 super(MessagingException.CERTIFICATE_VALIDATION_ERROR, message);
28 super(MessagingException.CERTIFICATE_VALIDATION_ERROR, message, throwable);
Message.java 49 public abstract String getSubject() throws MessagingException;
51 public abstract void setSubject(String subject) throws MessagingException;
61 public abstract Date getReceivedDate() throws MessagingException;
63 public abstract Date getSentDate() throws MessagingException;
65 public abstract void setSentDate(Date sentDate) throws MessagingException;
67 public abstract Address[] getRecipients(RecipientType type) throws MessagingException;
70 throws MessagingException;
72 public void setRecipient(RecipientType type, Address address) throws MessagingException {
78 public abstract Address[] getFrom() throws MessagingException;
80 public abstract void setFrom(Address from) throws MessagingException;
    [all...]
Body.java 24 public InputStream getInputStream() throws MessagingException;
25 public void writeTo(OutputStream out) throws IOException, MessagingException;
MessagingException.java 29 public class MessagingException extends Exception {
78 public MessagingException(String message, Throwable throwable) {
82 public MessagingException(int exceptionType, String message, Throwable throwable) {
89 * Constructs a MessagingException with an exceptionType and a null message.
92 public MessagingException(int exceptionType) {
97 * Constructs a MessagingException with a message.
100 public MessagingException(String message) {
105 * Constructs a MessagingException with an exceptionType and a message.
108 public MessagingException(int exceptionType, String message) {
113 * Constructs a MessagingException with an exceptionType, a message, and dat
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/internet/
MimeBodyPart.java 20 import com.android.voicemail.impl.mail.MessagingException;
40 public MimeBodyPart() throws MessagingException {
44 public MimeBodyPart(Body body) throws MessagingException {
48 public MimeBodyPart(Body body, String mimeType) throws MessagingException {
55 protected String getFirstHeader(String name) throws MessagingException {
60 public void addHeader(String name, String value) throws MessagingException {
65 public void setHeader(String name, String value) throws MessagingException {
70 public String[] getHeader(String name) throws MessagingException {
75 public void removeHeader(String name) throws MessagingException {
80 public Body getBody() throws MessagingException {
    [all...]
MimeMultipart.java 19 import com.android.voicemail.impl.mail.MessagingException;
36 public MimeMultipart() throws MessagingException {
41 public MimeMultipart(String contentType) throws MessagingException {
47 throw new MessagingException("MultiPart does not contain boundary: " + contentType);
50 throw new MessagingException(
67 public String getPreamble() throws MessagingException {
71 public void setPreamble(String preamble) throws MessagingException {
76 public String getContentType() throws MessagingException {
80 public void setSubType(String subType) throws MessagingException {
86 public void writeTo(OutputStream out) throws IOException, MessagingException {
    [all...]
TextBody.java 20 import com.android.voicemail.impl.mail.MessagingException;
35 public void writeTo(OutputStream out) throws IOException, MessagingException {
51 public InputStream getInputStream() throws MessagingException {
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeBodyPart.java 21 import com.android.emailcommon.mail.MessagingException;
44 public MimeBodyPart() throws MessagingException {
48 public MimeBodyPart(Body body) throws MessagingException {
52 public MimeBodyPart(Body body, String mimeType) throws MessagingException {
59 protected String getFirstHeader(String name) throws MessagingException {
64 public void addHeader(String name, String value) throws MessagingException {
69 public void setHeader(String name, String value) throws MessagingException {
74 public String[] getHeader(String name) throws MessagingException {
79 public void removeHeader(String name) throws MessagingException {
84 public Body getBody() throws MessagingException {
    [all...]
MimeMultipart.java 20 import com.android.emailcommon.mail.MessagingException;
38 public MimeMultipart() throws MessagingException {
43 public MimeMultipart(String contentType) throws MessagingException {
49 throw new MessagingException("MultiPart does not contain boundary: " + contentType);
52 throw new MessagingException(
67 public String getPreamble() throws MessagingException {
71 public void setPreamble(String preamble) throws MessagingException {
76 public String getContentType() throws MessagingException {
80 public void setSubType(String subType) throws MessagingException {
86 public void writeTo(OutputStream out) throws IOException, MessagingException {
    [all...]
TextBody.java 20 import com.android.emailcommon.mail.MessagingException;
38 public void writeTo(OutputStream out) throws IOException, MessagingException {
55 public InputStream getInputStream() throws MessagingException {
MimeMessage.java 23 import com.android.emailcommon.mail.MessagingException;
118 * @throws MessagingException
120 public MimeMessage(InputStream in) throws IOException, MessagingException {
142 protected void parse(InputStream in) throws IOException, MessagingException {
149 throws IOException, MessagingException {
167 public Date getReceivedDate() throws MessagingException {
172 public Date getSentDate() throws MessagingException {
200 public void setSentDate(Date sentDate) throws MessagingException {
206 public String getContentType() throws MessagingException {
216 public String getDisposition() throws MessagingException {
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/
Sender.java 24 import com.android.emailcommon.mail.MessagingException;
40 public static Sender newInstance(Account account) throws MessagingException {
41 throw new MessagingException("Sender.newInstance: Unknown scheme in "
46 throws MessagingException {
58 throw new MessagingException("can not instantiate Sender for " + account.mDisplayName);
61 throw new MessagingException(
71 throws MessagingException {
105 * @throws MessagingException If the sender cannot be obtained or if the account is invalid.
108 throws MessagingException {
115 throw new MessagingException("Cannot find sender for account " + account.mDisplayName)
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ServiceStore.java 25 import com.android.emailcommon.mail.MessagingException;
41 public ServiceStore(Account account, Context context) throws MessagingException {
49 public static Store newInstance(Account account, Context context) throws MessagingException {
58 public Bundle checkSettings() throws MessagingException {
61 * @throws MessagingException if we can't authenticate the account
73 throw new MessagingException("Call to validate generated an exception", e);
  /packages/apps/Email/src/com/android/email/activity/setup/
CheckSettingsErrorDialogFragment.java 28 import com.android.emailcommon.mail.MessagingException;
58 * @param message from {@link #getErrorString(Context, MessagingException)}
83 // MessagingException.AUTODISCOVER_AUTHENTICATION_FAILED
134 public static int getReasonFromException (MessagingException ex) {
137 case MessagingException.AUTODISCOVER_AUTHENTICATION_FAILED:
138 case MessagingException.AUTHENTICATION_FAILED:
140 case MessagingException.CLIENT_CERTIFICATE_REQUIRED:
146 public static String getErrorString(Context context, MessagingException ex) {
155 case MessagingException.CERTIFICATE_VALIDATION_ERROR:
160 case MessagingException.AUTHENTICATION_FAILED
    [all...]
  /packages/apps/Email/src/com/android/email/mail/transport/
SmtpSender.java 30 import com.android.emailcommon.mail.MessagingException;
59 public static Sender newInstance(Account account, Context context) throws MessagingException {
90 public void open() throws MessagingException {
134 throw new MessagingException(MessagingException.TLS_REQUIRED);
148 throw new MessagingException(MessagingException.OAUTH_NOT_SUPPORTED);
161 throw new MessagingException(MessagingException.AUTH_REQUIRED);
175 throw new MessagingException(MessagingException.IOERROR, ioe.toString())
    [all...]

Completed in 357 milliseconds

1 2 3 4