Java Code Examples for hudson.util.FormValidation#validateRequired()

The following examples show how to use hudson.util.FormValidation#validateRequired() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: WatchStep.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckSuccessPattern(
        @QueryParameter String successPattern) {
    return FormValidation.validateRequired(successPattern);
}
 
Example 2
Source File: CreateStep.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckJsonyaml(@QueryParameter String jsonyaml) {
    return FormValidation.validateRequired(jsonyaml);
}
 
Example 3
Source File: Label.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckValue(@QueryParameter String value) {
    return FormValidation.validateRequired(value);
}
 
Example 4
Source File: Label.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckName(@QueryParameter String name) {
    return FormValidation.validateRequired(name);
}
 
Example 5
Source File: ResourceName.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckValue(@QueryParameter String value) {
    return FormValidation.validateRequired(value);
}
 
Example 6
Source File: OpenShiftExec.java    From jenkins-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckPod(@QueryParameter String value)
        throws IOException, ServletException {
    return FormValidation.validateRequired(value);
}
 
Example 7
Source File: RawStep.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doArguments(@QueryParameter String arguments) {
    return FormValidation.validateRequired(arguments);
}
 
Example 8
Source File: RawStep.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCommand(@QueryParameter String command) {
    return FormValidation.validateRequired(command);
}
 
Example 9
Source File: Argument.java    From jenkins-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckValue(@QueryParameter String value) {
    return FormValidation.validateRequired(value);
}
 
Example 10
Source File: ClusterConfig.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckName(@QueryParameter String value) {
    return FormValidation.validateRequired(value);
}
 
Example 11
Source File: ClusterConfig.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckName(@QueryParameter String value) {
    return FormValidation.validateRequired(value);
}
 
Example 12
Source File: WatchStep.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckTemplate(@QueryParameter String template) {
    return FormValidation.validateRequired(template);
}
 
Example 13
Source File: WatchStep.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckSuccessPattern(
        @QueryParameter String successPattern) {
    return FormValidation.validateRequired(successPattern);
}
 
Example 14
Source File: Label.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckValue(@QueryParameter String value) {
    return FormValidation.validateRequired(value);
}
 
Example 15
Source File: Label.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckName(@QueryParameter String name) {
    return FormValidation.validateRequired(name);
}
 
Example 16
Source File: WatchStep.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckTemplate(@QueryParameter String template) {
    return FormValidation.validateRequired(template);
}
 
Example 17
Source File: AdvancedArgument.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckValue(@QueryParameter String value) {
    return FormValidation.validateRequired(value);
}
 
Example 18
Source File: RawStep.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doArguments(@QueryParameter String arguments) {
    return FormValidation.validateRequired(arguments);
}
 
Example 19
Source File: RawStep.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCommand(@QueryParameter String command) {
    return FormValidation.validateRequired(command);
}
 
Example 20
Source File: ClusterConfig.java    From jenkins-client-plugin with Apache License 2.0 4 votes vote down vote up
public FormValidation doCheckServerUrl(@QueryParameter String value) {
    return FormValidation.validateRequired(value);
}