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

com.github.dockerjava.core.WebTarget Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
package com.github.dockerjava.core;

import java.util.Map;
import java.util.Set;

public interface WebTarget {

    WebTarget path(String... components);

    InvocationBuilder request();

    WebTarget resolveTemplate(String name, Object value);

    WebTarget queryParam(String name, Object value);

    WebTarget queryParamsSet(String name, Set values);

    WebTarget queryParamsJsonMap(String name, Map values);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy