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

com.justinsb.etcd.EtcdResult Maven / Gradle / Ivy

There is a newer version: 0.1.2
Show newest version
package com.justinsb.etcd;

public class EtcdResult {
	// General values
	public String action;
	public EtcdNode node;
	public EtcdNode prevNode;

	// For errors
	public Integer errorCode;
	public String message;
	public String cause;
	public int errorIndex;

	public boolean isError() {
		return errorCode != null;
	}

	@Override
	public String toString() {
		return EtcdClient.format(this);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy