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

io.federecio.dropwizard.sample.Saying Maven / Gradle / Ivy

There is a newer version: 4.0.5-1
Show newest version
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