/*
 * Copyright 2014 Red Hat, Inc.
 *
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v1.0
 *  and Apache License v2.0 which accompanies this distribution.
 *
 *  The Eclipse Public License is available at
 *  http://www.eclipse.org/legal/epl-v10.html
 *
 *  The Apache License v2.0 is available at
 *  http://www.opensource.org/licenses/apache2.0.php
 *
 *  You may elect to redistribute this code under either of these licenses.
 */
package io.vertx.ext.web;

/**
 * Represent a Locale as reported by the HTTP client.
 * <p>
 *
 * @author <a href="mailto:plopes@redhat.com">Paulo Lopes</a>
 */

import io.vertx.codegen.annotations.VertxGen;
import io.vertx.ext.web.impl.ParsableLanguageValue;

Deprecated:Use LanguageHeader instead
/** * @deprecated Use {@link LanguageHeader} instead */
@VertxGen() @Deprecated public interface Locale { static Locale create() { final java.util.Locale locale = java.util.Locale.getDefault(); return new ParsableLanguageValue(locale.getLanguage() + "-" + locale.getCountry() + "-" + locale.getVariant()); } static Locale create(String language) { return new ParsableLanguageValue(language); } static Locale create(String language, String country) { return new ParsableLanguageValue(language + "-" + country); } static Locale create(String language, String country, String variant) { return new ParsableLanguageValue(language + "-" + country + "-" + variant); }
Returns the language as reported by the HTTP client.
Deprecated:Use LanguageHeader.tag() instead
Returns:language
/** * Returns the language as reported by the HTTP client. * * @deprecated Use {@link LanguageHeader#tag()} instead * @return language */
@Deprecated String language();
Returns the country as reported by the HTTP client.
Deprecated:Use LanguageHeader.subtag() instead
Returns:variant
/** * Returns the country as reported by the HTTP client. * * @deprecated Use {@link LanguageHeader#subtag()} instead * @return variant */
@Deprecated String country();
Returns the variant as reported by the HTTP client.
Deprecated:Use LanguageHeader.subtag(int) with value 2 instead
Returns:variant
/** * Returns the variant as reported by the HTTP client. * * @deprecated Use {@link LanguageHeader#subtag(int)} with value 2 instead * @return variant */
@Deprecated String variant(); }