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

com.github.j3t.ssl.utils.strategy.KeyManagerStrategy Maven / Gradle / Ivy

Go to download

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