org.glassfish.jersey.servlet.init.internal.LocalizationMessages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaxrs-ri Show documentation
Show all versions of jaxrs-ri Show documentation
A bundle project producing JAX-RS RI bundles. The primary artifact is an "all-in-one" OSGi-fied JAX-RS RI bundle
(jaxrs-ri.jar).
Attached to that are two compressed JAX-RS RI archives. The first archive (jaxrs-ri.zip) consists of binary RI bits and
contains the API jar (under "api" directory), RI libraries (under "lib" directory) as well as all external
RI dependencies (under "ext" directory). The secondary archive (jaxrs-ri-src.zip) contains buildable JAX-RS RI source
bundle and contains the API jar (under "api" directory), RI sources (under "src" directory) as well as all external
RI dependencies (under "ext" directory). The second archive also contains "build.xml" ANT script that builds the RI
sources. To build the JAX-RS RI simply unzip the archive, cd to the created jaxrs-ri directory and invoke "ant" from
the command line.
package org.glassfish.jersey.servlet.init.internal;
import java.util.Locale;
import java.util.ResourceBundle;
import org.glassfish.jersey.internal.l10n.Localizable;
import org.glassfish.jersey.internal.l10n.LocalizableMessageFactory;
import org.glassfish.jersey.internal.l10n.LocalizableMessageFactory.ResourceBundleSupplier;
import org.glassfish.jersey.internal.l10n.Localizer;
/**
* Defines string formatting method for each constant in the resource file
*
*/
public final class LocalizationMessages {
private final static String BUNDLE_NAME = "org.glassfish.jersey.servlet.init.internal.localization";
private final static LocalizableMessageFactory MESSAGE_FACTORY = new LocalizableMessageFactory(BUNDLE_NAME, new LocalizationMessages.BundleSupplier());
private final static Localizer LOCALIZER = new Localizer();
private LocalizationMessages() {
}
public static Localizable localizableJERSEY_APP_MAPPING_CONFLICT(Object arg0, Object arg1) {
return MESSAGE_FACTORY.getMessage("jersey.app.mapping.conflict", arg0, arg1);
}
/**
* Mapping conflict. A Servlet registration exists with same mapping as the Jersey servlet application, named {0}, at the servlet mapping, {1}.
*
*/
public static String JERSEY_APP_MAPPING_CONFLICT(Object arg0, Object arg1) {
return LOCALIZER.localize(localizableJERSEY_APP_MAPPING_CONFLICT(arg0, arg1));
}
public static Localizable localizableJERSEY_APP_REGISTERED_MAPPING(Object arg0, Object arg1) {
return MESSAGE_FACTORY.getMessage("jersey.app.registered.mapping", arg0, arg1);
}
/**
* Registering the Jersey servlet application, named {0}, at the servlet mapping {1}, with the Application class of the same name.
*
*/
public static String JERSEY_APP_REGISTERED_MAPPING(Object arg0, Object arg1) {
return LOCALIZER.localize(localizableJERSEY_APP_REGISTERED_MAPPING(arg0, arg1));
}
public static Localizable localizableJERSEY_APP_REGISTERED_CLASSES(Object arg0, Object arg1) {
return MESSAGE_FACTORY.getMessage("jersey.app.registered.classes", arg0, arg1);
}
/**
* Registering the Jersey servlet application, named {0}, with the following root resource and provider classes: {1}
*
*/
public static String JERSEY_APP_REGISTERED_CLASSES(Object arg0, Object arg1) {
return LOCALIZER.localize(localizableJERSEY_APP_REGISTERED_CLASSES(arg0, arg1));
}
public static Localizable localizableJERSEY_APP_NO_MAPPING(Object arg0) {
return MESSAGE_FACTORY.getMessage("jersey.app.no.mapping", arg0);
}
/**
* The Jersey servlet application, named {0}, has no servlet mapping.
*
*/
public static String JERSEY_APP_NO_MAPPING(Object arg0) {
return LOCALIZER.localize(localizableJERSEY_APP_NO_MAPPING(arg0));
}
public static Localizable localizableSERVLET_ASYNC_CONTEXT_ALREADY_STARTED() {
return MESSAGE_FACTORY.getMessage("servlet.async.context.already.started");
}
/**
* Servlet request has been put into asynchronous mode by an external force. Proceeding with the existing AsyncContext instance, but cannot guarantee the correct behavior of JAX-RS AsyncResponse time-out support.
*
*/
public static String SERVLET_ASYNC_CONTEXT_ALREADY_STARTED() {
return LOCALIZER.localize(localizableSERVLET_ASYNC_CONTEXT_ALREADY_STARTED());
}
public static Localizable localizableJERSEY_APP_REGISTERED_APPLICATION(Object arg0) {
return MESSAGE_FACTORY.getMessage("jersey.app.registered.application", arg0);
}
/**
* Registering the Jersey servlet application, named {0}, with the Application class of the same name.
*
*/
public static String JERSEY_APP_REGISTERED_APPLICATION(Object arg0) {
return LOCALIZER.localize(localizableJERSEY_APP_REGISTERED_APPLICATION(arg0));
}
public static Localizable localizableJERSEY_APP_NO_MAPPING_OR_ANNOTATION(Object arg0, Object arg1) {
return MESSAGE_FACTORY.getMessage("jersey.app.no.mapping.or.annotation", arg0, arg1);
}
/**
* The Jersey servlet application, named {0}, is not annotated with {1} and has no servlet mapping.
*
*/
public static String JERSEY_APP_NO_MAPPING_OR_ANNOTATION(Object arg0, Object arg1) {
return LOCALIZER.localize(localizableJERSEY_APP_NO_MAPPING_OR_ANNOTATION(arg0, arg1));
}
private static class BundleSupplier
implements ResourceBundleSupplier
{
public ResourceBundle getResourceBundle(Locale locale) {
return ResourceBundle.getBundle(BUNDLE_NAME, locale);
}
}
}