package org.mailster.smtp.core.auth;
/**
* Holds the identity of a logged in user.
*
* @author De Oliveira Edouard <doe_wanted@yahoo.fr>
*/
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;
}
}