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

org.opensearch.migrations.Flavor Maven / Gradle / Ivy

The newest version!
package org.opensearch.migrations;

import lombok.Getter;
import lombok.RequiredArgsConstructor;

@RequiredArgsConstructor
@Getter
public enum Flavor {
    ELASTICSEARCH("ES"),
    OPENSEARCH("OS");

    final String shorthand;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy