io.federecio.dropwizard.sample.Saying Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-swagger Show documentation
Show all versions of dropwizard-swagger Show documentation
A simple way to document your REST APIs in DropWizard using Swagger
package io.federecio.dropwizard.sample;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Saying {
private final String message;
public Saying(String message) {
this.message = message;
}
@JsonProperty
public String getMessage() {
return message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy