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

com.aceevo.ursus.example.simplejerseyclient.Hello Maven / Gradle / Ivy

The newest version!
package com.aceevo.ursus.example.simplejerseyclient;

import com.fasterxml.jackson.annotation.JsonProperty;

public class Hello {

    @JsonProperty
    private String name;

    public Hello() {

    }

    public Hello(String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }

    void setName(String name) {
        this.name = name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy