You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2013/03/15 16:17:29 UTC

svn commit: r1456985 - in /accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test: MiniAccumuloCluster.java MiniAccumuloConfig.java

Author: kturner
Date: Fri Mar 15 15:17:29 2013
New Revision: 1456985

URL: http://svn.apache.org/r1456985
Log:
ACCUMULO-765 Marked some of the new 1.5 APIs with @since javadoc tags

Modified:
    accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/MiniAccumuloCluster.java
    accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/MiniAccumuloConfig.java

Modified: accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/MiniAccumuloCluster.java
URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/MiniAccumuloCluster.java?rev=1456985&r1=1456984&r2=1456985&view=diff
==============================================================================
--- accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/MiniAccumuloCluster.java (original)
+++ accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/MiniAccumuloCluster.java Fri Mar 15 15:17:29 2013
@@ -45,6 +45,8 @@ import org.apache.zookeeper.server.ZooKe
 /**
  * A utility class that will create Zookeeper and Accumulo processes that write all of their data to a single local directory. This class makes it easy to test
  * code against a real Accumulo instance. Its much more accurate for testing than MockAccumulo, but much slower than MockAccumulo.
+ * 
+ * @since 1.5.0
  */
 public class MiniAccumuloCluster {
   

Modified: accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/MiniAccumuloConfig.java
URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/MiniAccumuloConfig.java?rev=1456985&r1=1456984&r2=1456985&view=diff
==============================================================================
--- accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/MiniAccumuloConfig.java (original)
+++ accumulo/branches/1.5/test/src/main/java/org/apache/accumulo/test/MiniAccumuloConfig.java Fri Mar 15 15:17:29 2013
@@ -22,6 +22,8 @@ import java.util.Map;
 
 /**
  * Holds configuration for {@link MiniAccumuloCluster}. Required configurations must be passed to constructor and all other configurations are optional.
+ * 
+ * @since 1.5.0
  */
 
 public class MiniAccumuloConfig {