summaryrefslogtreecommitdiff
path: root/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigOverlayManipulator.java
diff options
context:
space:
mode:
Diffstat (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigOverlayManipulator.java')
-rw-r--r--pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigOverlayManipulator.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigOverlayManipulator.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigOverlayManipulator.java
index e3fec9f5..4eca4e4f 100644
--- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigOverlayManipulator.java
+++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigOverlayManipulator.java
@@ -91,6 +91,36 @@ public interface ConfigOverlayManipulator {
public void setSkipFinishOverlay(boolean skipFinish);
/**
+ * Sets whether keystore signing is enabled
+ * @param enabled whether keystore signing is enabled
+ */
+ public void setKeyStoreEnabledOverlay(Boolean enabled);
+
+ /**
+ * Sets the keystore file
+ * @param file the keystore file
+ */
+ public void setKeyStoreFileOverlay(String file);
+
+ /**
+ * Sets the keystore type
+ * @param type the keystore type
+ */
+ public void setKeyStoreTypeOverlay(String type);
+
+ /**
+ * Sets the keystore store password
+ * @param storePass the keystore store password
+ */
+ public void setKeyStoreStorePassOverlay(String storePass);
+
+ /**
+ * Sets the keystore key password
+ * @param keyPass the keystore key password
+ */
+ public void setKeyStoreKeyPassOverlay(String keyPass);
+
+ /**
* Sets the configuration file
* @param configurationFile
*/