Example usage for org.springframework.http ResponseCookie getValue

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

Introduction

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

Prototype

public String getValue() 

Source Link

Document

Return the cookie value or an empty string (never null ).

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  w  w .ja  va 2s.co m
            httpCookie.getDomain().ifPresent(cookie::setDomain);
            httpCookie.getPath().ifPresent(cookie::setPath);
            cookie.setSecure(httpCookie.isSecure());
            cookie.setHttpOnly(httpCookie.isHttpOnly());
            this.response.addCookie(cookie);
        }
    }
}