All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.rpc.plugins.SecMessages Maven / Gradle / Ivy

There is a newer version: 4.0.4
Show newest version

package com.sun.xml.rpc.plugins;

import com.sun.xml.ws.util.localization.Localizable;
import com.sun.xml.ws.util.localization.LocalizableMessageFactory;
import com.sun.xml.ws.util.localization.Localizer;


/**
 * Defines string formatting method for each constant in the resource file
 * 
 */
public final class SecMessages {

    private final static LocalizableMessageFactory messageFactory = new LocalizableMessageFactory("com.sun.xml.rpc.plugins.sec");
    private final static Localizer localizer = new Localizer();

    public static Localizable localizableSEC_INVALID_MODEL(Object arg0) {
        return messageFactory.getMessage("sec.invalidModel", arg0);
    }

    /**
     * cannot create model file: {0}
     * 
     */
    public static String SEC_INVALID_MODEL(Object arg0) {
        return localizer.localize(localizableSEC_INVALID_MODEL(arg0));
    }

    public static Localizable localizableSEC_USAGE_OPTIONS() {
        return messageFactory.getMessage("sec.usage.options");
    }

    /**
     *   -security           Security configuration file 
     * 
     */
    public static String SEC_USAGE_OPTIONS() {
        return localizer.localize(localizableSEC_USAGE_OPTIONS());
    }

    public static Localizable localizableSEC_MISSING_OPTION_ARGUMENT(Object arg0) {
        return messageFactory.getMessage("sec.missingOptionArgument", arg0);
    }

    /**
     * option "{0}" requires an argument
     * 
     */
    public static String SEC_MISSING_OPTION_ARGUMENT(Object arg0) {
        return localizer.localize(localizableSEC_MISSING_OPTION_ARGUMENT(arg0));
    }

    public static Localizable localizableSEC_DUPLICATE_OPTION(Object arg0) {
        return messageFactory.getMessage("sec.duplicateOption", arg0);
    }

    /**
     * duplicate option: {0}
     * 
     */
    public static String SEC_DUPLICATE_OPTION(Object arg0) {
        return localizer.localize(localizableSEC_DUPLICATE_OPTION(arg0));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy