Search in sources :

Example 1 with ResponseCookie

use of com.webpieces.http2.api.subparsers.ResponseCookie in project webpieces by deanhiller.

the class ResponseCreator method create.

private Http2Header create(RouterCookie c) {
    ResponseCookie cookie = new ResponseCookie();
    cookie.setName(c.name);
    cookie.setValue(c.value);
    cookie.setDomain(c.domain);
    cookie.setPath(c.path);
    cookie.setMaxAgeSeconds(c.maxAgeSeconds);
    cookie.setSecure(c.isSecure);
    cookie.setHttpOnly(c.isHttpOnly);
    return httpSubParser.createHeader(cookie);
}
Also used : ResponseCookie(com.webpieces.http2.api.subparsers.ResponseCookie)

Aggregations

ResponseCookie (com.webpieces.http2.api.subparsers.ResponseCookie)1