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

com.tinkerpop.rexster.protocol.ResultAndBindings Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
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