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

com.github.obhen233.result.ExcuteResult Maven / Gradle / Ivy

The newest version!
package com.github.obhen233.result;

import java.io.Serializable;

public class ExcuteResult implements Serializable {
	
	private boolean result = false;
	
	private Object formatMsg;

	public boolean isResult() {
		return result;
	}

	public void setResult(boolean result) {
		this.result = result;
	}

	public Object getFormatMsg() {
		return formatMsg;
	}

	public void setFormatMsg(Object formatMsg) {
		this.formatMsg = formatMsg;
	}
	
	@Override
	public String toString() {
		return this.formatMsg == null ? "":this.formatMsg.toString();
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy