/*
 * 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 edu.umd.cs.findbugs.annotations.NonNull;

import java.time.temporal.TemporalAmount;
import java.util.Optional;

An interface representing the configuration of a Cookie.
Author:Sergio del Amo
Since:1.1.0
/** * An interface representing the configuration of a Cookie. * * @author Sergio del Amo * @since 1.1.0 */
public interface CookieConfiguration {
Returns:The name of the cookie
/** * @return The name of the cookie */
@NonNull String getCookieName();
Gets the domain name of this Cookie.
Returns:the domain name of this Cookie
/** * Gets the domain name of this Cookie. * * @return the domain name of this Cookie */
Optional<String> getCookieDomain();
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 */
Optional<String> getCookiePath();
Checks to see if this Cookie can only be accessed via HTTP.
Returns:True if the cookie is HTTP only
/** * Checks to see if this {@link Cookie} can only be accessed via HTTP. * * @return True if the cookie is HTTP only */
Optional<Boolean> isCookieHttpOnly();
Returns:True if the cookie is secure
/** * @return True if the cookie is secure */
Optional<Boolean> isCookieSecure();
Returns:The max age to use for the cookie
/** * @return The max age to use for the cookie */
Optional<TemporalAmount> getCookieMaxAge();
Returns:return the SameSite to use for the cookie.
/** * @return return the SameSite to use for the cookie. */
default Optional<SameSite> getCookieSameSite() { return Optional.empty(); } }