org.jfrog.hudson.maven3.Messages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artifactory Show documentation
Show all versions of artifactory Show documentation
Integrates Artifactory to Hudson
The newest version!
// CHECKSTYLE:OFF
package org.jfrog.hudson.maven3;
import org.jvnet.localizer.Localizable;
import org.jvnet.localizer.ResourceBundleHolder;
@SuppressWarnings({
"",
"PMD"
})
public class Messages {
private final static ResourceBundleHolder holder = ResourceBundleHolder.get(Messages.class);
/**
* Maven 3
*
*/
public static String installer_displayName() {
return holder.format("installer.displayName");
}
/**
* Maven 3
*
*/
public static Localizable _installer_displayName() {
return new Localizable(holder, "installer.displayName");
}
/**
* Invoke Maven 3
*
*/
public static String step_displayName() {
return holder.format("step.displayName");
}
/**
* Invoke Maven 3
*
*/
public static Localizable _step_displayName() {
return new Localizable(holder, "step.displayName");
}
}