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

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

There is a newer version: 0.0.2
Show newest version
package br.com.cefis.request;


public class PositionRequest {

    private String name;

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

        return this;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy