com.taobao.drc.clusterclient.clustermanager.AbstractControllerRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of consumer-core Show documentation
Show all versions of consumer-core Show documentation
The java consumer core component for Data Transmission Service
package com.taobao.drc.clusterclient.clustermanager;
import org.apache.http.client.config.RequestConfig;
/**
* @author yangyang
* @since 17/6/20
*/
public abstract class AbstractControllerRequest {
abstract public String getAPIVersion();
abstract public String getPath();
abstract public String getContent();
abstract public RequestConfig getRequestConfig();
}