aboutsummaryrefslogtreecommitdiff
path: root/spss.test/src/testgenerator/Pass.java
diff options
context:
space:
mode:
Diffstat (limited to 'spss.test/src/testgenerator/Pass.java')
-rw-r--r--spss.test/src/testgenerator/Pass.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/spss.test/src/testgenerator/Pass.java b/spss.test/src/testgenerator/Pass.java
new file mode 100644
index 000000000..b6fef9575
--- /dev/null
+++ b/spss.test/src/testgenerator/Pass.java
@@ -0,0 +1,22 @@
+package testgenerator;
+
+import iaik.apps.util.passphrase.PassphrasePrompt;
+
+/**
+ * @author Administrator
+ *
+ * To change this generated comment edit the template variable "typecomment":
+ * Window>Preferences>Java>Templates.
+ * To enable and disable the creation of type comments go to
+ * Window>Preferences>Java>Code Generation.
+ */
+public class Pass implements PassphrasePrompt
+{
+ public Pass() {};
+ public void setCancelAllowed(boolean b) {};
+ public void setMessage(Object o) {};
+ public boolean isCancelAllowed() { return false; }
+ public char[] promptPassphrase() { return "1111".toCharArray(); };
+ public void setProtectedResourceInfo(Object o) {};
+
+}