|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of MailException in com.funambol.mail |
---|
Methods in com.funambol.mail that throw MailException | |
---|---|
int |
RMSStore.addChild(java.lang.String path,
RmsRecordItem child)
|
int |
Store.addChild(java.lang.String path,
RmsRecordItem child)
This method add a new child to a Folder . |
Folder |
RMSStore.addFolder(Folder folder)
|
Folder |
Store.addFolder(Folder folder)
Add a new Folder to the Store . |
void |
Message.addRecipient(Address address)
Add the specified recipient to the correct header, based on the Address type (see com.funambol.mail.Address for the defined types). |
void |
Message.addRecipients(Address[] list)
Add the specified recipients to the correct header, based on the Address type. |
void |
Folder.appendMessage(Message msg)
Appends the given Message to this Folder |
int |
RMSStore.countChilds(java.lang.String path)
|
int |
Store.countChilds(java.lang.String path)
This method returns the count of childs in a Folder . |
int |
RMSStore.countChilds(java.lang.String path,
char prefix)
|
int |
Store.countChilds(java.lang.String path,
char prefix)
This method returns the count of childs in a Folder . |
void |
Folder.deleteMessage(Message msg)
Deletes a Message from this Folder
The message is properly updated so that it is both complete (completely
loaded in memory) and its parent folder is cleared. |
void |
Folder.deleteMessage(java.lang.String recordId)
Deletes a Message from this Folder , using
the record id as key. |
Address[] |
Message.getBcc()
Get the BCC addresses. |
Address[] |
Message.getCc()
Get the CC addresses. |
java.lang.String[] |
RMSStore.getChildIDs(java.lang.String path)
|
java.lang.String[] |
Store.getChildIDs(java.lang.String path)
This method returns the array of the childs IDs contained in a Folder . |
ChildrenEnumeration |
Folder.getChildren()
This method returns the ChildrenEnumeration of this
Folder . |
ChildrenEnumeration |
RMSStore.getChildren(java.lang.String path)
|
ChildrenEnumeration |
Store.getChildren(java.lang.String path)
Get the ChildrenEnumeration related to the given path. |
Folder |
RMSStore.getFolder(java.lang.String path)
|
Folder |
Store.getFolder(java.lang.String path)
Retrieves a Folder object by path. |
Folder |
RMSStore.getFolder(java.lang.String path,
boolean lightFolder)
|
Folder |
Store.getFolder(java.lang.String path,
boolean lightFolder)
Retrieves a Folder object by path. |
Address |
Message.getFrom()
Get the sender address. |
Message |
Folder.getMessage(java.lang.String recordId)
Gets the Message object corresponding to the given record
ID. |
int |
Folder.getMessageCount()
Get the total number of messages in this Folder |
int |
Message.getNumberOfRecipients()
Returns the number of recipients of this email. |
Folder |
Folder.getParent()
Returns the parent Folder of this Folder |
Address[] |
Message.getReplyTo()
Get the REPLY-TO addresses. |
Address[] |
Message.getTo()
Get the TO addresses. |
void |
RMSStore.init(boolean reset)
|
void |
Store.init(boolean reset)
Initialize the store. |
Folder[] |
Folder.list()
This method returns the list of subfolders under this Folder |
Folder[] |
RMSStore.list(java.lang.String path)
|
Folder[] |
Store.list(java.lang.String path)
Returns the list of the subfolders contained under the specified Folder . |
static Address[] |
Address.parse(int type,
java.lang.String addresslist)
Parses an address list and return an array of Address
objects, each representing a recipient. |
Message |
MIMEProcessor.parseMailMessage(java.lang.String rfc2822)
This method parses a text email message formatted as per RFC 2822 and MIME specifications in order to build a Message object ready to be
processed by the mail library. |
RmsRecordItem |
RMSStore.readChild(java.lang.String path,
java.lang.String childId)
|
RmsRecordItem |
Store.readChild(java.lang.String path,
java.lang.String childId)
This method reads a Folder from the Store, using the child
id. |
java.io.DataInputStream |
RMSStore.readChildBytes(java.lang.String path,
java.lang.String childId)
|
java.io.DataInputStream |
Store.readChildBytes(java.lang.String path,
java.lang.String childId)
This method returns the InputStream of a Folder child. |
void |
Message.reloadMessage()
This method forces a method to be fetched from the store and brought into memory. |
void |
RMSStore.removeChild(java.lang.String path,
java.lang.String childId)
|
void |
Store.removeChild(java.lang.String path,
java.lang.String childId)
This method removes a Folder child from the Store. |
boolean |
RMSStore.removeFolder(Folder folder,
boolean recursive)
Removes a Folder RecordStore, its parent reference and the
subfolders. |
boolean |
Store.removeFolder(Folder folder,
boolean recursive)
Removes a Folder from the record store. |
void |
RMSStore.removeFolder(java.lang.String folderPath)
|
void |
Store.removeFolder(java.lang.String folderPath)
Recursively removes a Folder given the Folder
name |
void |
Message.serialize(java.io.DataOutputStream dout)
|
void |
Message.setContent(java.lang.Object content)
Sets the content of this Message. |
abstract void |
Part.setContent(java.lang.Object content)
Sets the content of this Part. |
void |
BodyPart.setContent(java.lang.Object content)
Sets the content of this BodyPart. |
void |
Message.setContent(java.lang.Object content,
java.lang.String type)
Sets the content of this Message. |
abstract void |
Part.setContent(java.lang.Object content,
java.lang.String type)
Sets the content and the Content-type of this Part. |
void |
BodyPart.setContent(java.lang.Object content,
java.lang.String type)
Sets the content of this BodyPart. |
void |
Address.setEmail(java.lang.String email)
Accessor method to set this address' email |
void |
RMSStore.updateChild(java.lang.String path,
RmsRecordItem child)
|
void |
Store.updateChild(java.lang.String path,
RmsRecordItem child)
This method updates an existing Folder child in the Store. |
void |
Folder.updateMessage(Message msg)
Updates the given Message |
Constructors in com.funambol.mail that throw MailException | |
---|---|
Address(int type,
java.lang.String address)
Initializes a new instance of Address, parsing address |
|
Address(int type,
java.lang.String name,
java.lang.String address)
Initializes a new instance of Address |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |