javax.ws.rs.core.ApiMessages Maven / Gradle / Ivy
package javax.ws.rs.core;
import com.sun.localization.Localizable;
import com.sun.localization.LocalizableMessageFactory;
import com.sun.localization.Localizer;
/**
* Defines string formatting method for each constant in the resource file
*
*/
public final class ApiMessages {
private final static LocalizableMessageFactory messageFactory = new LocalizableMessageFactory("javax.ws.rs.core.api");
private final static Localizer localizer = new Localizer();
public static Localizable localizableMEDIA_TYPE_INVALID(Object arg0) {
return messageFactory.getMessage("media.type.invalid", arg0);
}
/**
* Invalid media type: {0}
*
*/
public static String MEDIA_TYPE_INVALID(Object arg0) {
return localizer.localize(localizableMEDIA_TYPE_INVALID(arg0));
}
public static Localizable localizableCONTENT_CANNOT_BE_NULL() {
return messageFactory.getMessage("content.cannot.be.null");
}
/**
* content parameter cannot be null.
*
*/
public static String CONTENT_CANNOT_BE_NULL() {
return localizer.localize(localizableCONTENT_CANNOT_BE_NULL());
}
public static Localizable localizableILLEGAL_PROVIDER_CLASS_NAME(Object arg0) {
return messageFactory.getMessage("illegal.provider.class.name", arg0);
}
/**
* Illegal provider-class name: {0}.
*
*/
public static String ILLEGAL_PROVIDER_CLASS_NAME(Object arg0) {
return localizer.localize(localizableILLEGAL_PROVIDER_CLASS_NAME(arg0));
}
public static Localizable localizableMEDIA_TYPE_CANNOT_BE_NULL() {
return messageFactory.getMessage("media.type.cannot.be.null");
}
/**
* mediaType parameter cannot be null.
*
*/
public static String MEDIA_TYPE_CANNOT_BE_NULL() {
return localizer.localize(localizableMEDIA_TYPE_CANNOT_BE_NULL());
}
public static Localizable localizablePROVIDER_NOT_FOUND(Object arg0) {
return messageFactory.getMessage("provider.not.found", arg0);
}
/**
* Provider {0} not found.
*
*/
public static String PROVIDER_NOT_FOUND(Object arg0) {
return localizer.localize(localizablePROVIDER_NOT_FOUND(arg0));
}
public static Localizable localizablePROVIDER_COULD_NOT_BE_CREATED(Object arg0, Object arg1) {
return messageFactory.getMessage("provider.could.not.be.created", arg0, arg1);
}
/**
* Provider {0} could not be instantiated: {1}
*
*/
public static String PROVIDER_COULD_NOT_BE_CREATED(Object arg0, Object arg1) {
return localizer.localize(localizablePROVIDER_COULD_NOT_BE_CREATED(arg0, arg1));
}
public static Localizable localizableILLEGAL_CONFIG_SYNTAX() {
return messageFactory.getMessage("illegal.config.syntax");
}
/**
* Illegal configuration-file syntax.
*
*/
public static String ILLEGAL_CONFIG_SYNTAX() {
return localizer.localize(localizableILLEGAL_CONFIG_SYNTAX());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy