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

tech.rsqn.streamsdemo.model.EchoResponse Maven / Gradle / Ivy

package tech.rsqn.streamsdemo.model;

public class EchoResponse {
    private int seq;
    private String code;
    private int max;

    public int getSeq() {
        return seq;
    }

    public void setSeq(int seq) {
        this.seq = seq;
    }

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public int getMax() {
        return max;
    }

    public void setMax(int max) {
        this.max = max;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy