Example usage for org.springframework.http ResponseCookie isHttpOnly

List of usage examples for org.springframework.http ResponseCookie isHttpOnly

Introduction

In this page you can find the example usage for org.springframework.http ResponseCookie isHttpOnly.

Prototype

public boolean isHttpOnly() 

Source Link

Document

Return true if the cookie has the "HttpOnly" attribute.

Usage

From source file:org.springframework.http.server.reactive.ServletServerHttpResponse.java

@Override
protected void writeCookies() {
    for (String name : getCookies().keySet()) {
        for (ResponseCookie httpCookie : getCookies().get(name)) {
            Cookie cookie = new Cookie(name, httpCookie.getValue());
            if (!httpCookie.getMaxAge().isNegative()) {
                cookie.setMaxAge((int) httpCookie.getMaxAge().getSeconds());
            }/*from w ww. jav  a2s  . c  o m*/
            httpCookie.getDomain().ifPresent(cookie::setDomain);
            httpCookie.getPath().ifPresent(cookie::setPath);
            cookie.setSecure(httpCookie.isSecure());
            cookie.setHttpOnly(httpCookie.isHttpOnly());
            this.response.addCookie(cookie);
        }
    }
}