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

liquibase.ui.UIServiceEnum Maven / Gradle / Ivy

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

import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * Enum used to define the available UIServices provided by Liquibase that can be set using global parameters
 */
@Getter
@AllArgsConstructor
public enum UIServiceEnum {

    CONSOLE(ConsoleUIService.class),
    LOGGER(LoggerUIService.class);

    private final Class uiServiceClass;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy