X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fpage%2FPage.java;h=dd54f41b035d7a44697aeb7ae3aeea4b12a05679;hb=d4fb65bed263c3d73eeae23c202d8fd8aa4e6735;hp=7a9b281f90ccce4167ec1ca3ded4c11433fda5c9;hpb=d2387116fcb86f0bc77286d501d095faaffce91b;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/page/Page.java b/src/main/java/net/pterodactylus/sone/web/page/Page.java index 7a9b281..dd54f41 100644 --- a/src/main/java/net/pterodactylus/sone/web/page/Page.java +++ b/src/main/java/net/pterodactylus/sone/web/page/Page.java @@ -125,7 +125,7 @@ public interface Page { * * @return The accessed URI */ - public URI getURI() { + public URI getUri() { return uri; } @@ -307,6 +307,21 @@ public interface Page { } /** + * Sets the HTTP header with the given name to the given value. Multiple + * headers with the same name are not implemented so that latest call to + * {@link #setHeader(String, String)} determines what is sent to the + * browser. + * + * @param name + * The name of the header + * @param value + * The value of the header + */ + public void setHeader(String name, String value) { + headers.put(name, value); + } + + /** * Returns the content of the response body. May be {@code null} if the * response does not have a body. *