![JAR search and dependency download from the Maven repository](/logo.png)
jakarta.mvc.locale.LocaleResolverContext Maven / Gradle / Ivy
/*
* Copyright (c) 2016-2017 JSR 371 expert group and contributors
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package jakarta.mvc.locale;
import jakarta.ws.rs.core.Configuration;
import jakarta.ws.rs.core.Cookie;
import jakarta.ws.rs.core.Request;
import jakarta.ws.rs.core.UriInfo;
import java.util.List;
import java.util.Locale;
/**
* Contextual data used by a {@link jakarta.mvc.locale.LocaleResolver} to resolve the request
* locale.
*
* @author Christian Kaltepoth
* @author Ivar Grimstad
* @see jakarta.mvc.locale.LocaleResolver
* @since 1.0
*/
public interface LocaleResolverContext {
/**
* Returns the application's configuration.
*
* @return application's configuration.
* @see jakarta.ws.rs.core.Configuration
*/
Configuration getConfiguration();
/**
* Get a list of languages that are acceptable for the response according to the
* Accept-Language
HTTP header sent by the client.
*
* @return a read-only list of languages ordered by their q-value.
* @see Locale
*/
List getAcceptableLanguages();
/**
* Get the Jakarta RESTful Web Services {@link Request} instance.
*
* @return the Jakarta RESTful Web Services {@link Request} instance.
* @see Request
*/
Request getRequest();
/**
* Get request URI information.
*
* @return request URI information
* @see UriInfo
*/
UriInfo getUriInfo();
/**
* Returns the cookie with the given name.
*
* @param name the name of the cookie
* @return the cookie or null
if no cookie with this name exists
* @see Cookie
*/
Cookie getCookie(String name);
/**
* Get the request header as a single string value.
*
* @param name the name of the request header
* @return the request header value. If the request header is not present then
* {@code null} is returned. If the request header is present more than once then the values
* of joined together and separated by a ',' character.
*/
String getHeaderString(String name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy