Explain the structure of JavaMail APIThe JavaMail API has classes such as Message, Store and Transport. The API can be used to subclass for providing new protocols and some additional functionality when needed. The concrete subclasses of this API are MimeMessage and MimeBodyPart which are implemented widely by the internet mail protocols. The supporting protocols for JavaMail API are IMAP4, POP3 and SMTP.
The JavaMail architectural components include the following:
Abstract Layer: This layer declares the classes, interfaces and abstract methods that are intended for supporting the mail functions which all mailing systems supports.
Intranet Implementation Layer: The implementation of MIME internet standards and part of the abstract layer comprises this layer.
Java Bean Activation Framework: The encapsulation of message data and handling the data interacting commands is used by the Javabean Activation Framework.
Explain the structure of JavaMail APIJavaMail API Packages
1. javax.mail The JavaMailTM API provides classes that model a mail system.
2. javax.mail.event Listeners and events for the JavaMail API.
3. javax.mail.internet Classes specific to Internet mail systems.
4. javax.mail.search Message search terms for the JavaMail API.
5. javax.mail.util Utility classes.
|