org.opensearch.migrations.Flavor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transformation Show documentation
Show all versions of transformation Show documentation
Everything opensearch migrations
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;
}