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

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

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


public class AuthenticadRecipient implements IRecipient {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private IRecipient _recipient;
	private String _recipientpassword;
	public AuthenticadRecipient(IRecipient recipient,String recipientPassword) {
		_recipient = recipient;
		_recipientpassword =recipientPassword;
		
	}
	public String name() {
		return _recipient.name();
	} 
	public String password(){
		return _recipientpassword;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy