com.github.j3t.ssl.utils.strategy.KeyManagerStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ssl-utils Show documentation
Show all versions of ssl-utils Show documentation
Is a library of utilities to assist with developing security functionality in Java applications.
The newest version!
package com.github.j3t.ssl.utils.strategy;
/**
* A strategy to select which alias is to select during the authentication, no matter the alias exists or the
* certificate is valid. This can be used to override the standard authentication process.
*
* @author j3t
* @see StrategyKeyManager
*/
public interface KeyManagerStrategy {
/**
* Returns the selected alias.
*
* @return {@link String} or null
*/
String chooseAlias();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy