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

org.subethamail.smtp.auth.Credential Maven / Gradle / Ivy

package org.subethamail.smtp.auth;

/**
 * Holds the identity of a logged in user.
 * 
 * @author De Oliveira Edouard <[email protected]>
 */
public class Credential 
{
	private String id;

	/** Creates a new instance of Credential */
	public Credential(String id)
	{
		this.id = id;
	}
	
	public String getId() 
	{
		return id;
	}

	public void setId(String id) 
	{
		this.id = id;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy