/*
 * Copyright 2017-2020 original authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.micronaut.http.cookie;

import io.micronaut.core.util.ArgumentUtils;
import edu.umd.cs.findbugs.annotations.NonNull;
import edu.umd.cs.findbugs.annotations.Nullable;
import java.io.Serializable;
import java.time.temporal.ChronoUnit;
import java.time.temporal.TemporalAmount;
import java.util.Optional;

An interface representing a Cookie. See https://tools.ietf.org/html/rfc6265.
Author:Graeme Rocher
Since:1.0
/** * An interface representing a Cookie. See https://tools.ietf.org/html/rfc6265. * * @author Graeme Rocher * @since 1.0 */
public interface Cookie extends Comparable<Cookie>, Serializable {
Returns:The name of the cookie
/** * @return The name of the cookie */
@NonNull String getName();
Returns:The value of the cookie
/** * @return The value of the cookie */
@NonNull String getValue();
Gets the domain name of this Cookie.

Domain names are formatted according to RFC 2109.

Returns:the domain name of this Cookie
/** * Gets the domain name of this Cookie. * * <p>Domain names are formatted according to RFC 2109. * * @return the domain name of this Cookie */
@Nullable String getDomain();
The path of the cookie. The cookie is visible to all paths below the request path on the server.
Returns:The cookie path
/** * The path of the cookie. The cookie is visible to all paths below the request path on the server. * * @return The cookie path */
@Nullable String getPath();
Checks to see if this Cookie can only be accessed via HTTP. If this returns true, the Cookie cannot be accessed through client side script - But only if the browser supports it.

See here for reference

Returns:True if this Cookie is HTTP-only or false if it isn't
/** * Checks to see if this {@link Cookie} can only be accessed via HTTP. * If this returns true, the {@link Cookie} cannot be accessed through client side script - But only if the * browser supports it. * <p> * See <a href="https://www.owasp.org/index.php/HTTPOnly">here</a> for reference * * @return True if this {@link Cookie} is HTTP-only or false if it isn't */
boolean isHttpOnly();
Returns:True if the cookie is secure
/** * @return True if the cookie is secure */
boolean isSecure();
Returns:The maximum age of the cookie in seconds
/** * @return The maximum age of the cookie in seconds */
long getMaxAge();
Checks to see if this Cookie can be sent along cross-site requests. For more information, please look here
Returns:The SameSite attribute of the cookie
/** * Checks to see if this {@link Cookie} can be sent along cross-site requests. * For more information, please look * <a href="https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-05">here</a> * @return The SameSite attribute of the cookie */
default Optional<SameSite> getSameSite() { return Optional.empty(); }
Determines if this this Cookie can be sent along cross-site requests. For more information, please look here
Params:
  • sameSite – SameSite value
Returns:This cookie
/** * Determines if this this {@link Cookie} can be sent along cross-site requests. * For more information, please look * <a href="https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-05">here</a> * @param sameSite SameSite value * @return This cookie */
default @NonNull Cookie sameSite(@Nullable SameSite sameSite) { return this; }
Sets the max age of the cookie in seconds.
Params:
  • maxAge – The max age
Returns:This cookie
/** * Sets the max age of the cookie in seconds. * * @param maxAge The max age * @return This cookie */
@NonNull Cookie maxAge(long maxAge);
Sets the value.
Params:
  • value – The value of the cookie
Returns:This cookie
/** * Sets the value. * * @param value The value of the cookie * @return This cookie */
@NonNull Cookie value(@NonNull String value);
Sets the domain of the cookie.
Params:
  • domain – The domain of the cookie
Returns:This cookie
/** * Sets the domain of the cookie. * * @param domain The domain of the cookie * @return This cookie */
@NonNull Cookie domain(@Nullable String domain);
Sets the path of the cookie.
Params:
  • path – The path of the cookie
Returns:This cookie
/** * Sets the path of the cookie. * * @param path The path of the cookie * @return This cookie */
@NonNull Cookie path(@Nullable String path);
Sets whether the cookie is secure.
Params:
  • secure – Is the cookie secure
Returns:This cookie
/** * Sets whether the cookie is secure. * * @param secure Is the cookie secure * @return This cookie */
@NonNull Cookie secure(boolean secure);
Sets whether the cookie is HTTP-Only.
Params:
  • httpOnly – Is the cookie HTTP-Only
Returns:This cookie
/** * Sets whether the cookie is HTTP-Only. * * @param httpOnly Is the cookie HTTP-Only * @return This cookie */
@NonNull Cookie httpOnly(boolean httpOnly);
Configure the Cookie with the given configuration.
Params:
  • configuration – The configuration
Returns:The cookie
/** * Configure the Cookie with the given configuration. * @param configuration The configuration * @return The cookie */
default @NonNull Cookie configure(@NonNull CookieConfiguration configuration) { ArgumentUtils.requireNonNull("configuration", configuration); return configure(configuration, true); }
Configure the Cookie with the given configuration.
Params:
  • configuration – The configuration
  • isSecure – Is the request secure
Returns:The cookie
/** * Configure the Cookie with the given configuration. * @param configuration The configuration * @param isSecure Is the request secure * @return The cookie */
default @NonNull Cookie configure( @NonNull CookieConfiguration configuration, boolean isSecure) { ArgumentUtils.requireNonNull("configuration", configuration); configuration.getCookiePath().ifPresent(this::path); configuration.getCookieDomain().ifPresent(this::domain); configuration.getCookieMaxAge().ifPresent(this::maxAge); configuration.isCookieHttpOnly().ifPresent(this::httpOnly); if (isSecure) { configuration.isCookieSecure().ifPresent(this::secure); } configuration.getCookieSameSite().ifPresent(this::sameSite); return this; }
Sets the max age of the cookie.
Params:
  • maxAge – The max age
Returns:This cookie
/** * Sets the max age of the cookie. * * @param maxAge The max age * @return This cookie */
default @NonNull Cookie maxAge(@NonNull TemporalAmount maxAge) { ArgumentUtils.requireNonNull("maxAge", maxAge); return maxAge(maxAge.get(ChronoUnit.SECONDS)); }
Construct a new Cookie for the given name and value.
Params:
  • name – The name
  • value – The value
Returns:The Cookie
/** * Construct a new Cookie for the given name and value. * * @param name The name * @param value The value * @return The Cookie */
static @NonNull Cookie of(@NonNull String name, @NonNull String value) { CookieFactory instance = CookieFactory.INSTANCE; if (instance != null) { return instance.create(name, value); } throw new UnsupportedOperationException("No CookeFactory implementation found. Server implementation does not support cookies."); } }