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

io.zbus.rpc.Response Maven / Gradle / Ivy

There is a newer version: 1.0.0-b1
Show newest version
package io.zbus.rpc;

public class Response {  
	private Object result;
	private Object error; //if not null, means error happened, otherwise result is OK
	
	public Object getResult() {
		return result;
	}
	
	public void setResult(Object result) {
		this.result = result;
	}
	
	public Object getError(){
		return this.error;
	}
	
	public void setError(Object error){
		this.error = error;
	}  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy