Uses of Interface
net.officefloor.server.http.HttpResponseCookie
-
Packages that use HttpResponseCookie Package Description net.officefloor.server.http net.officefloor.server.http.impl net.officefloor.server.http.mock -
-
Uses of HttpResponseCookie in net.officefloor.server.http
Classes in net.officefloor.server.http that implement HttpResponseCookie Modifier and Type Class Description class
WritableHttpCookie
Writable HTTP Cookie.Methods in net.officefloor.server.http that return HttpResponseCookie Modifier and Type Method Description HttpResponseCookie
HttpResponseCookie. addExtension(java.lang.String extension)
Allows adding an extension.HttpResponseCookie
WritableHttpCookie. addExtension(java.lang.String extension)
HttpResponseCookie
HttpResponseCookie. clearAttributes()
Clears the attributes.HttpResponseCookie
WritableHttpCookie. clearAttributes()
HttpResponseCookie
HttpResponseCookie. configure(java.util.function.Consumer<HttpResponseCookie> configurer)
Enables configuring multiple attributes with reduced locking.HttpResponseCookie
WritableHttpCookie. configure(java.util.function.Consumer<HttpResponseCookie> configurer)
HttpResponseCookie
HttpResponseCookies. getCookie(java.lang.String name)
Obtains theHttpResponseCookie
by name.HttpResponseCookie
HttpResponseCookies. setCookie(java.lang.String name, java.lang.String value)
Sets aHttpResponseCookie
.HttpResponseCookie
HttpResponseCookies. setCookie(java.lang.String name, java.lang.String value, java.util.function.Consumer<HttpResponseCookie> initialiser)
Sets aHttpResponseCookie
.HttpResponseCookie
HttpResponseCookies. setCookie(HttpRequestCookie cookie)
Sets aHttpResponseCookie
from aHttpRequestCookie
.HttpResponseCookie
HttpResponseCookies. setCookie(HttpRequestCookie cookie, java.util.function.Consumer<HttpResponseCookie> initialiser)
Sets aHttpResponseCookie
from aHttpRequestCookie
.HttpResponseCookie
HttpResponseCookie. setDomain(java.lang.String domain)
Specifies the domain.HttpResponseCookie
WritableHttpCookie. setDomain(java.lang.String domain)
HttpResponseCookie
HttpResponseCookie. setExpires(java.time.temporal.TemporalAccessor expires)
Sets the expire time.HttpResponseCookie
WritableHttpCookie. setExpires(java.time.temporal.TemporalAccessor expires)
HttpResponseCookie
HttpResponseCookie. setHttpOnly(boolean isHttpOnly)
Indicates if only available over HTTP requests (and not, for example, made available to JavaScript in the browser).HttpResponseCookie
WritableHttpCookie. setHttpOnly(boolean isHttpOnly)
HttpResponseCookie
HttpResponseCookie. setMaxAge(long maxAge)
Sets the maximum age in seconds.HttpResponseCookie
WritableHttpCookie. setMaxAge(long maxAge)
HttpResponseCookie
HttpResponseCookie. setPath(java.lang.String path)
Specifies the path.HttpResponseCookie
WritableHttpCookie. setPath(java.lang.String path)
HttpResponseCookie
HttpResponseCookie. setSecure(boolean isSecure)
Flags whether the client is only to send the Cookie over a secure connection.HttpResponseCookie
WritableHttpCookie. setSecure(boolean isSecure)
HttpResponseCookie
HttpResponseCookie. setValue(java.lang.String value)
Sets the value.HttpResponseCookie
WritableHttpCookie. setValue(java.lang.String value)
Methods in net.officefloor.server.http with parameters of type HttpResponseCookie Modifier and Type Method Description boolean
HttpResponseCookies. removeCookie(HttpResponseCookie cookie)
Removes theHttpResponseCookie
.Method parameters in net.officefloor.server.http with type arguments of type HttpResponseCookie Modifier and Type Method Description HttpResponseCookie
HttpResponseCookie. configure(java.util.function.Consumer<HttpResponseCookie> configurer)
Enables configuring multiple attributes with reduced locking.HttpResponseCookie
WritableHttpCookie. configure(java.util.function.Consumer<HttpResponseCookie> configurer)
HttpResponseCookie
HttpResponseCookies. setCookie(java.lang.String name, java.lang.String value, java.util.function.Consumer<HttpResponseCookie> initialiser)
Sets aHttpResponseCookie
.HttpResponseCookie
HttpResponseCookies. setCookie(HttpRequestCookie cookie, java.util.function.Consumer<HttpResponseCookie> initialiser)
Sets aHttpResponseCookie
from aHttpRequestCookie
. -
Uses of HttpResponseCookie in net.officefloor.server.http.impl
Methods in net.officefloor.server.http.impl that return HttpResponseCookie Modifier and Type Method Description HttpResponseCookie
ProcessAwareHttpResponseCookies. getCookie(java.lang.String name)
HttpResponseCookie
ProcessAwareHttpResponseCookies. setCookie(java.lang.String name, java.lang.String value)
HttpResponseCookie
ProcessAwareHttpResponseCookies. setCookie(java.lang.String name, java.lang.String value, java.util.function.Consumer<HttpResponseCookie> initialiser)
HttpResponseCookie
ProcessAwareHttpResponseCookies. setCookie(HttpRequestCookie cookie)
HttpResponseCookie
ProcessAwareHttpResponseCookies. setCookie(HttpRequestCookie cookie, java.util.function.Consumer<HttpResponseCookie> initialiser)
Methods in net.officefloor.server.http.impl that return types with arguments of type HttpResponseCookie Modifier and Type Method Description java.util.Iterator<HttpResponseCookie>
ProcessAwareHttpResponseCookies. iterator()
Methods in net.officefloor.server.http.impl with parameters of type HttpResponseCookie Modifier and Type Method Description boolean
ProcessAwareHttpResponseCookies. removeCookie(HttpResponseCookie cookie)
Method parameters in net.officefloor.server.http.impl with type arguments of type HttpResponseCookie Modifier and Type Method Description HttpResponseCookie
ProcessAwareHttpResponseCookies. setCookie(java.lang.String name, java.lang.String value, java.util.function.Consumer<HttpResponseCookie> initialiser)
HttpResponseCookie
ProcessAwareHttpResponseCookies. setCookie(HttpRequestCookie cookie, java.util.function.Consumer<HttpResponseCookie> initialiser)
-
Uses of HttpResponseCookie in net.officefloor.server.http.mock
Methods in net.officefloor.server.http.mock with parameters of type HttpResponseCookie Modifier and Type Method Description void
MockHttpResponse. assertCookie(HttpResponseCookie cookie)
Asserts contains theWritableHttpCookie
.void
MockHttpServer.MockHttpResponseImpl. assertCookie(HttpResponseCookie cookie)
-