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

com.tinkerpop.rexster.protocol.msg.RexProScriptResult Maven / Gradle / Ivy

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