Skip to content

Commit

Permalink
fix displaying correct value in swagger-ui (AdoptOpenJDK#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnoliver committed Apr 30, 2020
1 parent ed232e0 commit 12fe821
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package net.adoptopenjdk.api.v3.models
import org.eclipse.microprofile.openapi.annotations.enums.SchemaType
import org.eclipse.microprofile.openapi.annotations.media.Schema

@Schema(type = SchemaType.STRING, enumeration = ["jdk", "jre", "testimage", "debugimage", "static-libs"], example = "jdk")
@Schema(type = SchemaType.STRING, enumeration = ["jdk", "jre", "testimage", "debugimage", "staticlibs"], example = "jdk")
enum class ImageType : FileNameMatcher {
jdk, jre, testimage, debugimage, staticlibs("static-libs");

Expand Down

0 comments on commit 12fe821

Please sign in to comment.