| com.sun.portal.comm.url.MailURL
All known Subclasses: com.sun.portal.comm.url.NotesMailURLBuilder, com.sun.portal.comm.url.FullURLBuilderTest, com.sun.portal.comm.url.SunMailURLBuilder, com.sun.portal.comm.url.UWCURLBuilder, com.sun.portal.comm.url.ExchangeMailURLBuilder,
MailURL | public interface MailURL (Code) | | |
Method Summary | |
public boolean | allowsComposeURL() Lets invoking classes know if composing URLs are available
in this URLBuilder. | public boolean | allowsMessageURL() Lets invoking classes know if per-message urls are available
in this URLBuilder. | public String | getComposeURL(String subject, javax.mail.Address[] to, javax.mail.Address[] cc, javax.mail.Address[] bcc) Return URL string to open the client's compose window. | public String | getMessageURL(javax.mail.Message msg) Return URL string for specific message to be opened in mail client. |
allowsComposeURL | public boolean allowsComposeURL()(Code) | | Lets invoking classes know if composing URLs are available
in this URLBuilder.
boolean Are compisition URLs available |
allowsMessageURL | public boolean allowsMessageURL()(Code) | | Lets invoking classes know if per-message urls are available
in this URLBuilder.
boolean Are message URLs available |
getComposeURL | public String getComposeURL(String subject, javax.mail.Address[] to, javax.mail.Address[] cc, javax.mail.Address[] bcc)(Code) | | Return URL string to open the client's compose window.
Parameters: String - Subject of the message javax.mail.Address[] Array of to: addresses javax.mail.Address[] Array of cc: addresses javax.mail.Address[] Array of bcc: addresses String Composition URL string |
getMessageURL | public String getMessageURL(javax.mail.Message msg)(Code) | | Return URL string for specific message to be opened in mail client.
javax.mail.Message The message to open String Message URL string |
|
|