All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.openservices.log.request.BasicRequest Maven / Gradle / Ivy

There is a newer version: 0.6.115
Show newest version
package com.aliyun.openservices.log.request;

import com.aliyun.openservices.log.http.client.HttpMethod;

public abstract class BasicRequest extends Request {

    public BasicRequest(String project) {
        super(project);
    }

    public abstract HttpMethod getMethod();

    public abstract String getUri();

    public Object getBody() {
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy