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

com.exasol.containers.status.ServiceStatus Maven / Gradle / Ivy

Go to download

This module provides abstraction for generation, startup, shutdown and use of an Exasol database running on Docker.

The newest version!
package com.exasol.containers.status;

import java.io.Serializable;

/**
 * Status of a service (like BucketFs).
 */
public enum ServiceStatus implements Serializable {
    /** service is no available yet */
    NOT_READY,
    /** service can be used */
    READY,
    /** service state has not yet been determined */
    NOT_CHECKED
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy