Example usage for org.springframework.http ResponseCookie isSecure

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

Introduction

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

Prototype

public boolean isSecure() 

Source Link

Document

Return true if the cookie has the "Secure" 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());
            }// w w  w .j  a  va  2s.com
            httpCookie.getDomain().ifPresent(cookie::setDomain);
            httpCookie.getPath().ifPresent(cookie::setPath);
            cookie.setSecure(httpCookie.isSecure());
            cookie.setHttpOnly(httpCookie.isHttpOnly());
            this.response.addCookie(cookie);
        }
    }
}