summaryrefslogtreecommitdiff
path: root/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigManipulator.java
diff options
context:
space:
mode:
authorTobias Kellner <tobias.kellner@iaik.tugraz.at>2015-10-08 17:55:01 +0200
committerTobias Kellner <tobias.kellner@iaik.tugraz.at>2015-10-08 17:56:11 +0200
commit86d2a12c001e74a1a549768eeb25ca0d1d389757 (patch)
tree0fceaa129289548455d049ddc8a3db64e5db7630 /pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigManipulator.java
parentd9b7f8f0ed2befcd0bbfa80c84c6a89e190ff481 (diff)
downloadpdf-over-86d2a12c001e74a1a549768eeb25ca0d1d389757.tar.gz
pdf-over-86d2a12c001e74a1a549768eeb25ca0d1d389757.tar.bz2
pdf-over-86d2a12c001e74a1a549768eeb25ca0d1d389757.zip
Add keystore configuration
Diffstat (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigManipulator.java')
-rw-r--r--pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigManipulator.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigManipulator.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigManipulator.java
index 346c59ae..701d0faf 100644
--- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigManipulator.java
+++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigManipulator.java
@@ -118,6 +118,36 @@ public interface ConfigManipulator {
public void setSignaturePdfACompat(boolean compat);
/**
+ * Sets whether keystore signing is enabled
+ * @param enabled whether keystore signing is enabled
+ */
+ public void setKeyStoreEnabled(Boolean enabled);
+
+ /**
+ * Sets the keystore file
+ * @param file the keystore file
+ */
+ public void setKeyStoreFile(String file);
+
+ /**
+ * Sets the keystore type
+ * @param type the keystore type
+ */
+ public void setKeyStoreType(String type);
+
+ /**
+ * Sets the keystore store password
+ * @param storePass the keystore store password
+ */
+ public void setKeyStoreStorePass(String storePass);
+
+ /**
+ * Sets the keystore key password
+ * @param keyPass the keystore key password
+ */
+ public void setKeyStoreKeyPass(String keyPass);
+
+ /**
* Sets whether to automatically check for application updates
* @param checkUpdate whether to automatically check for application updates
*/