com.distelli.cred.CredProviderFactory Maven / Gradle / Ivy
package com.distelli.cred;
@FunctionalInterface
public interface CredProviderFactory {
/**
* @param named - the name of the cred provider to obtain.
*
* @return the named CredProvider.
*/
public CredProvider getCredProvider(String named);
}