diff --git a/core/java/src/net/i2p/util/SimpleStore.java b/core/java/src/net/i2p/util/SimpleStore.java
new file mode 100644
index 0000000000000000000000000000000000000000..fe946ad9e6651f2769f97520be2b5751b3457544
--- /dev/null
+++ b/core/java/src/net/i2p/util/SimpleStore.java
@@ -0,0 +1,35 @@
+/*
+ * This is free software, do as you please.
+ */
+
+package net.i2p.util;
+
+/**
+ *
+ * @author sponge
+ */
+public class SimpleStore {
+
+    private boolean answer;
+
+    SimpleStore(boolean x) {
+        answer=x;
+    }
+
+    /**
+     * set the answer
+     * 
+     * @param x 
+     */
+    public void setAnswer(boolean x) {
+        answer = x;
+    }
+    /**
+     * 
+     * @return boolean
+     */
+    public boolean getAnswer() {
+        return answer;
+    }
+
+}