From 0d9eba221108eb01cd0d8db49d252a319bddc065 Mon Sep 17 00:00:00 2001 From: Michael Lieberman Date: Mon, 27 Oct 2014 10:58:20 -0400 Subject: [PATCH] Documentation --- .../edu/jhuapl/tinkerpop/AccumuloGraphConfiguration.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/java/edu/jhuapl/tinkerpop/AccumuloGraphConfiguration.java b/src/main/java/edu/jhuapl/tinkerpop/AccumuloGraphConfiguration.java index ea24f58..2c15254 100644 --- a/src/main/java/edu/jhuapl/tinkerpop/AccumuloGraphConfiguration.java +++ b/src/main/java/edu/jhuapl/tinkerpop/AccumuloGraphConfiguration.java @@ -47,12 +47,16 @@ import org.apache.hadoop.io.Text; import com.tinkerpop.blueprints.GraphFactory; import com.tinkerpop.blueprints.IndexableGraph; +/** + * Configuration class for setting AccumuloGraph parameters. + */ public class AccumuloGraphConfiguration implements Serializable { private Configuration conf; /** - * The fully-qualified class name of the class that implements the TinkerPop Graph interface. This is used in a configuration object to tell the GraphFactory + * The fully-qualified class name of the class that implements the TinkerPop Graph interface. + * This is used in a configuration object to tell the GraphFactory * which type to instantiate. */ public static final String ACCUMULO_GRAPH_CLASSNAME = AccumuloGraph.class.getCanonicalName();