ru.tinkoff.kora.http.server.common.HttpServerRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-server-common Show documentation
Show all versions of http-server-common Show documentation
Kora http-server-common module
package ru.tinkoff.kora.http.server.common;
import ru.tinkoff.kora.http.common.body.HttpBodyInput;
import ru.tinkoff.kora.http.common.cookie.Cookie;
import ru.tinkoff.kora.http.common.header.HttpHeaders;
import java.util.Collection;
import java.util.List;
import java.util.Map;
public interface HttpServerRequest {
String method();
String path();
String route();
HttpHeaders headers();
List cookies();
Map> queryParams();
Map pathParams();
HttpBodyInput body();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy