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

com.jpattern.service.mail.message.IMessageAddress Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
package com.jpattern.service.mail.message;

import java.util.List;

/**
 * 
 * @author Claudio Quaresima - [email protected] - 01/set/09 21:47:43
 *
 * @version $Id$
 */
public interface IMessageAddress {

    void from(IRecipient aRecipient);
    
    void to(List aRecipients);
    
    void user(String username);
    void password (String password);
    
    boolean valid();
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy