com.alibaba.schedulerx.worker.discovery.GroupDiscovery Maven / Gradle / Ivy
package com.alibaba.schedulerx.worker.discovery;
import java.util.List;
import org.apache.commons.configuration.Configuration;
/**
*
* @author xiaomeng.hxm
*/
public interface GroupDiscovery {
List getGroupIdList(Configuration conf) throws Exception;
List getAppKeyList(Configuration conf) throws Exception;
boolean isSystemProperty();
}