
hudson.plugins.deploy.Messages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deploy Show documentation
Show all versions of deploy Show documentation
Deploy to container Plugin
The newest version!
// CHECKSTYLE:OFF
package hudson.plugins.deploy;
import org.jvnet.localizer.Localizable;
import org.jvnet.localizer.ResourceBundleHolder;
@SuppressWarnings({
"",
"PMD"
})
public class Messages {
private final static ResourceBundleHolder holder = ResourceBundleHolder.get(Messages.class);
/**
* Deploy war/ear to a container
*
*/
public static String DeployPublisher_DisplayName() {
return holder.format("DeployPublisher.DisplayName");
}
/**
* Deploy war/ear to a container
*
*/
public static Localizable _DeployPublisher_DisplayName() {
return new Localizable(holder, "DeployPublisher.DisplayName");
}
/**
* Invalid url syntax
*
*/
public static String DeployPublisher_BadFormedUrl() {
return holder.format("DeployPublisher.BadFormedUrl");
}
/**
* Invalid url syntax
*
*/
public static Localizable _DeployPublisher_BadFormedUrl() {
return new Localizable(holder, "DeployPublisher.BadFormedUrl");
}
/**
* No such file exists: {0}
*
*/
public static String DeployPublisher_NoSuchFile(Object arg1) {
return holder.format("DeployPublisher.NoSuchFile", arg1);
}
/**
* No such file exists: {0}
*
*/
public static Localizable _DeployPublisher_NoSuchFile(Object arg1) {
return new Localizable(holder, "DeployPublisher.NoSuchFile", arg1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy