com.rathravane.clerk.credentials.UsernamePasswordCredential Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clerk Show documentation
Show all versions of clerk Show documentation
A framework for user identification, authentication, and access control.
package com.rathravane.clerk.credentials;
public class UsernamePasswordCredential
{
public UsernamePasswordCredential ( String un, String pw )
{
fUsername = un;
fPassword = pw;
}
@Override
public String toString () { return "User/Pwd for " + fUsername; }
public String getUsername () { return fUsername; }
public String getPassword () { return fPassword; }
private final String fUsername;
private final String fPassword;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy