com.alibaba.schedulerx.worker.security.Authenticator Maven / Gradle / Ivy
package com.alibaba.schedulerx.worker.security;
import java.util.List;
import com.alibaba.schedulerx.worker.exception.AuthenticateException;
import org.apache.commons.configuration.Configuration;
/**
*
* @author xiaomeng.hxm
*/
public interface Authenticator {
void authenticate(Configuration conf, String namespace, String namespceSource, List groupIds, List appKeys)
throws AuthenticateException;
}