com.tinkerpop.rexster.protocol.msg.RexProScriptResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rexster-protocol Show documentation
Show all versions of rexster-protocol Show documentation
RexPro is a binary protocol for Rexster graph server.
package com.tinkerpop.rexster.protocol.msg;
/**
* Object with a msgpack template
*
* @author Blake Eggleston (bdeggleston.github.com)
*/
public class RexProScriptResult {
private Object value;
public RexProScriptResult() {
this.value = null;
}
public RexProScriptResult(Object value) {
this.value = value;
}
public Object get() {
return value;
}
public void set(Object val) {
value = val;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy