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

org.nutz.web.ajax.AjaxT Maven / Gradle / Ivy

Go to download

Nutz, which is a collections of lightweight frameworks, each of them can be used independently

There is a newer version: 1.r.67
Show newest version
package org.nutz.web.ajax;

public class AjaxT  {

	boolean ok;
	String msg;
	T data;

	public boolean isOk() {
		return ok;
	}

	public String getMsg() {
		return msg;
	}

	public T getData() {
		return data;
	}

	public AjaxT setOk(boolean ok) {
		this.ok = ok;
		return this;
	}

	public AjaxT setMsg(String msg) {
		this.msg = msg;
		return this;
	}

	public AjaxT setData(T data) {
		this.data = data;
		return this;
	}
	
	public static final  AjaxT Create(Class klass) {
		return new AjaxT();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy