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

com.digitaldan.harmony.messages.ResponseMessage Maven / Gradle / Ivy

package com.digitaldan.harmony.messages;

public abstract class ResponseMessage extends Message {
    private int code;
    private String id;
    private String msg;

    public ResponseMessage(int code, String id, String msg) {
        super();
        this.code = code;
        this.id = id;
        this.msg = msg;
    }

    public int getCode() {
        return code;
    }

    public String getId() {
        return id;
    }

    public String getMsg() {
        return msg;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy