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

org.mailster.smtp.core.auth.Credential Maven / Gradle / Ivy

package org.mailster.smtp.core.auth;

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

    private String id;

    public Credential(String id) {
        this.id = id;
    }

    public String getId() {
        return id;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy