
com.daedafusion.security.common.Callback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of security-framework Show documentation
Show all versions of security-framework Show documentation
A pluggable security framework "inspired" by the OWASP ESAPI framework
The newest version!
package com.daedafusion.security.common;
/**
* Created by mphilpot on 7/21/14.
*/
public interface Callback
{
// Callback name registry
final String USERNAME = "username";
final String PASSWORD = "password";
final String OLD_PASSWORD = "oldPassword";
final String DOMAIN = "domain";
final String X509 = "x509";
String getName();
String getValue();
void setValue(String value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy