io.micronaut.http.cookie.CookieConfiguration Maven / Gradle / Ivy
The newest version!
/*
* 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.annotation.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
*/
public interface CookieConfiguration {
/**
* @return The name of the cookie
*/
@NonNull
String getCookieName();
/**
* Gets the domain name of this Cookie.
*
* @return the domain name of this Cookie
*/
Optional getCookieDomain();
/**
* The path of the cookie. The cookie is visible to all paths below the request path on the server.
*
* @return The cookie path
*/
Optional getCookiePath();
/**
* Checks to see if this {@link Cookie} can only be accessed via HTTP.
*
* @return True if the cookie is HTTP only
*/
Optional isCookieHttpOnly();
/**
* @return True if the cookie is secure
*/
Optional isCookieSecure();
/**
* @return The max age to use for the cookie
*/
Optional getCookieMaxAge();
/**
* @return return the SameSite to use for the cookie.
*/
default Optional getCookieSameSite() {
return Optional.empty();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy