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

org.wildfly.extras.creaper.commands.datasources.PoolFlushStrategy Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package org.wildfly.extras.creaper.commands.datasources;

public enum PoolFlushStrategy {
    FAILING_CONNECTION_ONLY("FailingConnectionOnly"),
    IDLE_CONNECTIONS("IdleConnections"),
    ENTIRE_POOL("EntirePool");

    private final String value;

    PoolFlushStrategy(final String value) {
        this.value = value;
    }

    String value() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy