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

org.springframework.ldap.pool.PoolExhaustedAction Maven / Gradle / Ivy

There is a newer version: 3.2.4
Show newest version
package org.springframework.ldap.pool;

/**
 * @author Mattias Hellborg Arthursson
 */
public enum PoolExhaustedAction {
    FAIL((byte)0),
    BLOCK((byte)1),
    GROW((byte)2);

    private final byte value;

    private PoolExhaustedAction(byte value) {
        this.value = value;
    }

    public byte getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy