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

hudson.mail.Messages Maven / Gradle / Ivy

The newest version!
// CHECKSTYLE:OFF

package hudson.mail;

import org.jvnet.localizer.Localizable;
import org.jvnet.localizer.ResourceBundleHolder;

@SuppressWarnings({
    "",
    "PMD"
})
public class Messages {

    private final static ResourceBundleHolder holder = ResourceBundleHolder.get(Messages.class);

    /**
     * Account signup
     * 
     */
    public static String account_creation_email_subject() {
        return holder.format("account.creation.email.subject");
    }

    /**
     * Account signup
     * 
     */
    public static Localizable _account_creation_email_subject() {
        return new Localizable(holder, "account.creation.email.subject");
    }

    /**
     * 
     * --
     * This message is automatically generated by Hudson. 
     * For more information on Hudson, see: http://hudson-ci.org/
     * 
     */
    public static String hudson_email_footer() {
        return holder.format("hudson.email.footer");
    }

    /**
     * 
     * --
     * This message is automatically generated by Hudson. 
     * For more information on Hudson, see: http://hudson-ci.org/
     * 
     */
    public static Localizable _hudson_email_footer() {
        return new Localizable(holder, "hudson.email.footer");
    }

    /**
     * [Hudson]
     * 
     */
    public static String hudson_email_subject_prefix() {
        return holder.format("hudson.email.subject.prefix");
    }

    /**
     * [Hudson]
     * 
     */
    public static Localizable _hudson_email_subject_prefix() {
        return new Localizable(holder, "hudson.email.subject.prefix");
    }

    /**
     * Dear {0} 
     * 
     * You have signed up for a Hudson account at: {1} 
     * Here are the details of your account: 
     * --------------------------------------------------------------------- 
     *             Email:  {2}
     *             Username: {3}
     *             Password: {4}
     * 
     * You can change the password on the page: {1}securityRealm/user/{3}/configure
     * 
     */
    public static String account_creation_email_text(Object arg1, Object arg2, Object arg3, Object arg4, Object arg5) {
        return holder.format("account.creation.email.text", arg1, arg2, arg3, arg4, arg5);
    }

    /**
     * Dear {0} 
     * 
     * You have signed up for a Hudson account at: {1} 
     * Here are the details of your account: 
     * --------------------------------------------------------------------- 
     *             Email:  {2}
     *             Username: {3}
     *             Password: {4}
     * 
     * You can change the password on the page: {1}securityRealm/user/{3}/configure
     * 
     */
    public static Localizable _account_creation_email_text(Object arg1, Object arg2, Object arg3, Object arg4, Object arg5) {
        return new Localizable(holder, "account.creation.email.text", arg1, arg2, arg3, arg4, arg5);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy