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

com.amashchenko.maven.plugin.gitflow.prompter.PromptValidation Maven / Gradle / Ivy

Go to download

The Git-Flow Maven Plugin supports various Git workflows, including Vincent Driessen's successful Git branching model and GitHub Flow. This plugin runs Git and Maven commands from the command line. Supports Eclipse Plugins build with Tycho.

The newest version!
/*
 * Copyright 2014-2023 Aleksandr Mashchenko.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.amashchenko.maven.plugin.gitflow.prompter;

import org.apache.maven.plugin.MojoFailureException;
import org.codehaus.plexus.util.cli.CommandLineException;

/**
 * Functional interface to validate prompt response.
 *
 * @param 
 *            Type of the response to validate.
 */
@FunctionalInterface
public interface PromptValidation {
    /**
     * Validates prompt response.
     * 
     * @param t
     *            Response to validate.
     * @return true when response is valid, false
     *         otherwise.
     * @throws MojoFailureException
     *             If validation fails.
     * @throws CommandLineException
     *             If validation fails.
     */
    boolean valid(T t) throws MojoFailureException, CommandLineException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy