Name

javax.mail.Store — This abstract class models a message store and its associated protocol.

Synopsis

public abstract class Store extends Service {
    // Protected Constructor
            protected Store(Session session, URLName urlname);
    // Public Methods
            public abstract Folder getDefaultFolder()
             throws MessagingException;
            public abstract Folder getFolder(java.lang.String name)
             throws MessagingException;
            public abstract Folder getFolder(URLName url)
             throws MessagingException;
            public void addStoreListener(StoreListener 1);
            public void removeStoreListener(StoreListener 1);
            public void addFolderListener(FolderListener 1);
            public void removeFolderListener(FolderListener 1);
    // Protected Methods
            protected void notifyStoreListeners(int type,
             java.lang.String message);
            protected void notifyFolderListeners(int type,
             Folder folder);
            protected void notifyFolderRenamedListeners(Folder oldF,
             Folder newF) ;
}

Hierarchy

java.lang.Object→javax.mail.Service→javax.mail.Store

Get Programming Internet Email now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.