com.github.dockerjava.core.WebTarget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
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 - 2025 Weber Informatics LLC | Privacy Policy