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

liquibase.ui.UIService Maven / Gradle / Ivy

There is a newer version: 4.29.1
Show newest version
package liquibase.ui;

import liquibase.ExtensibleObject;
import liquibase.plugin.Plugin;

/**
 * Service for interacting with the user.
 */
public interface UIService extends ExtensibleObject, Plugin {

    int getPriority();

    /**
     * Send a "normal" message to the user.
     */
    void sendMessage(String message);

    /**
     * Send an "error" message to the user.
     */
    void sendErrorMessage(String message);

    /**
     * Send an "error" message to the user along with a stacktrace.
     */
    void sendErrorMessage(String message, Throwable exception);

    /**
     * Prompt the user with the message and wait for a response.
* If this UIService implementation does not support user prompts, return the default value.
* If inputHandler is null, {@link DefaultInputHandler} will be used.
* If inputHandler throws an {@link IllegalArgumentException}, the user will be given the chance to re-enter the value.
* If the inputHandler returns true for {@link InputHandler#shouldAllowEmptyInput()} and the user enters an empty value * when prompted, or hits "enter", the valueIfNoEntry will be returned. If the inputHandler returns false for * {@link InputHandler#shouldAllowEmptyInput()}, the user will be reprompted until they enter a non-empty value, * which will then be returned. */ T prompt(String prompt, T valueIfNoEntry, InputHandler inputHandler, Class type); /** * * Method to set flag indicating whether prompting is allowed * * @param allowPrompt New flag value * @throws IllegalArgumentException If parameter is not allowed * */ void setAllowPrompt(boolean allowPrompt) throws IllegalArgumentException; /** * * Return current setting of allow prompt flag * * @return boolean * */ boolean getAllowPrompt(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy