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

com.jiuxian.mossrose.ui.Response Maven / Gradle / Ivy

There is a newer version: 1.1.5-RELEASE
Show newest version
package com.jiuxian.mossrose.ui;

public class Response {

	private int code;
	private T body;

	protected Response(int code, T body) {
		super();
		this.code = code;
		this.body = body;
	}

	public int getCode() {
		return code;
	}

	public T getBody() {
		return body;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy