com.tinkerpop.rexster.protocol.ResultAndBindings 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;
import java.util.List;
public class ResultAndBindings {
private Object result;
private List bindings;
public ResultAndBindings(final Object result, final List bindings) {
this.result = result;
this.bindings = bindings;
}
public Object getResult() {
return result;
}
public List getBindings() {
return bindings;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy