com.exasol.containers.status.ServiceStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exasol-testcontainers Show documentation
Show all versions of exasol-testcontainers Show documentation
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
}