This is an automated email from the ASF dual-hosted git repository.

mmiller pushed a commit to branch tour
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/tour by this push:
     new fd616fd  ACCUMULO-4734 Add required imports
fd616fd is described below

commit fd616fdb0d358692af20da5f3fdd81e1307abf31
Author: Mike Miller <mmil...@apache.org>
AuthorDate: Mon Nov 6 13:09:47 2017 -0500

    ACCUMULO-4734 Add required imports
---
 src/main/java/tour/Main.java | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/src/main/java/tour/Main.java b/src/main/java/tour/Main.java
index 10ac577..db1ec1c 100644
--- a/src/main/java/tour/Main.java
+++ b/src/main/java/tour/Main.java
@@ -1,6 +1,17 @@
 package tour;
 
-
+// Classes you will use along the tour
+import java.util.Map;
+import org.apache.accumulo.core.client.BatchWriter;
+import org.apache.accumulo.core.client.BatchWriterConfig;
+import org.apache.accumulo.core.client.Connector;
+import org.apache.accumulo.core.client.MutationsRejectedException;
+import org.apache.accumulo.core.client.Scanner;
+import org.apache.accumulo.core.client.TableNotFoundException;
+import org.apache.accumulo.core.data.Key;
+import org.apache.accumulo.core.data.Mutation;
+import org.apache.accumulo.core.data.Value;
+import org.apache.accumulo.core.security.Authorizations;
 import org.apache.accumulo.minicluster.MiniAccumuloCluster;
 
 import java.nio.file.Files;
@@ -20,7 +31,8 @@ public class Main {
         mac.stop();
     }
 
-    static void exercise(MiniAccumuloCluster mac) {
+    static void exercise(MiniAccumuloCluster mac) throws Exception{
         // start writing your code here
+
     }
 }

-- 
To stop receiving notification emails like this one, please contact
['"commits@accumulo.apache.org" <commits@accumulo.apache.org>'].

Reply via email to