All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.moon.core.mail.EmailInbox Maven / Gradle / Ivy

package com.moon.core.mail;

/**
 * @author moonsky
 */
public class EmailInbox {

    private EmailAccount account;

    /**
     * 构造函数
     *
     * @param account
     */
    public EmailInbox(EmailAccount account) {
        this.account = account;
    }

    public static EmailInbox of(EmailAccount account) {
        return new EmailInbox(account);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy