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

com.test.model.animals.Animal Maven / Gradle / Ivy

package com.test.model.animals;

import com.github.restup.annotations.ApiName;

@ApiName("animal")
public class Animal {

    private final Long id;
    private final String name;

    public Animal(Long id, String name) {
        super();
        this.id = id;
        this.name = name;
    }

    public Animal() {
        this(null, null);
    }

    public Long getId() {
        return id;
    }

    public String getName() {
        return name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy