
com.daedafusion.security.admin.providers.PolicyAdminProvider 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
package com.daedafusion.security.admin.providers;
import com.daedafusion.sf.Provider;
import com.daedafusion.security.common.LockoutPolicy;
import com.daedafusion.security.common.PasswordPolicy;
/**
* Created by mphilpot on 7/25/14.
*/
public interface PolicyAdminProvider extends Provider
{
LockoutPolicy getLockoutPolicy(String domain);
void setLockoutPolicy(String domain, LockoutPolicy policy);
PasswordPolicy getPasswordPolicy(String domain);
void setPasswordPolicy(String domain, PasswordPolicy policy);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy