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

org.sonarqube.ws.client.WsRequest Maven / Gradle / Ivy

package org.sonarqube.ws.client;

import java.util.Map;

public interface WsRequest {

    Method getMethod();

    String getPath();

    String getMediaType();

    @Deprecated
    Map getParams();

    Parameters getParameters();

    Headers getHeaders();

    enum Method {
        GET, POST
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy