| org.sakaiproject.email.api.DigestEdit
DigestEdit | public interface DigestEdit extends Digest,Edit(Code) | |
DigestEdit is a mutable Digest.
|
Method Summary | |
void | add(String to, String subject, String body) Add another message, in the current time period. | void | add(DigestMessage msg) Add another message, in the current time period. | void | clear(Time period) Clear all messages from a time period. |
add | void add(String to, String subject, String body)(Code) | | Add another message, in the current time period.
Parameters: subject - The to (user id) of the message. Parameters: subject - The subject of the message. Parameters: body - The subject of the message. |
add | void add(DigestMessage msg)(Code) | | Add another message, in the current time period.
Parameters: msg - The message to add. |
clear | void clear(Time period)(Code) | | Clear all messages from a time period.
Parameters: period - a Time in the time period. |
|
|