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

br.com.cefis.request.DepartmentRequest Maven / Gradle / Ivy

The newest version!
package br.com.cefis.request;


public class DepartmentRequest {

    private String name;

    public DepartmentRequest name(String name) {
        this.name = name;

        return this;
    }

    @Override
    public String toString() {
        return "DepartmentRequest {" +
                "name='" + name + '\'' +
                "}";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy