blob: c2b90f71c212dc21bceae3a64b4ee2c860486ffd [file] [log] [blame]
package org.apache.airavata.mft.secret.server.backend.custos.auth;
import java.util.Optional;
/**
* Represents the authentication related functional interfaces
*/
public interface AuthenticationHandler {
Optional<AuthConfig> authenticate(String id, String secret) throws Exception;
}