summaryrefslogtreecommitdiff
path: root/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java
diff options
context:
space:
mode:
authortkellner <tkellner@174cde9d-5d70-4d2a-aa98-46368bc2aaf7>2013-07-24 14:57:49 +0000
committertkellner <tkellner@174cde9d-5d70-4d2a-aa98-46368bc2aaf7>2013-07-24 14:57:49 +0000
commita52b66cf1d0a579b95cddba44fb4df0e97bf8e22 (patch)
tree684815b87698872b68d5bfd357a4320dbf38e752 /pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java
parent7b4a747d8a922cb03c8019249217dbf3ff68302a (diff)
downloadpdf-over-a52b66cf1d0a579b95cddba44fb4df0e97bf8e22.tar.gz
pdf-over-a52b66cf1d0a579b95cddba44fb4df0e97bf8e22.tar.bz2
pdf-over-a52b66cf1d0a579b95cddba44fb4df0e97bf8e22.zip
Add proxy authentication
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-over/trunk@465 174cde9d-5d70-4d2a-aa98-46368bc2aaf7
Diffstat (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java')
-rw-r--r--pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java48
1 files changed, 36 insertions, 12 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java
index 383f5e9b..486647cc 100644
--- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java
+++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java
@@ -81,18 +81,6 @@ public interface ConfigurationContainer {
public void setProxyHost(String host);
/**
- * Gets the signature note
- * @return the signature note
- */
- public String getSignatureNote();
-
- /**
- * Sets the signature note
- * @param note the signature note
- */
- public void setSignatureNote(String note);
-
- /**
* Gets the proxy port
*
* if port is -1 no port is selected
@@ -112,6 +100,42 @@ public interface ConfigurationContainer {
public void setProxyPort(int port) throws InvalidPortException;
/**
+ * Gets the proxy username
+ * @return the proxy username
+ */
+ public String getProxyUser();
+
+ /**
+ * Sets the proxy username
+ * @param user the proxy username
+ */
+ public void setProxyUser(String user);
+
+ /**
+ * Gets the proxy password
+ * @return the proxy password
+ */
+ public String getProxyPass();
+
+ /**
+ * Sets the proxy password
+ * @param pass the proxy password
+ */
+ public void setProxyPass(String pass);
+
+ /**
+ * Gets the signature note
+ * @return the signature note
+ */
+ public String getSignatureNote();
+
+ /**
+ * Sets the signature note
+ * @param note the signature note
+ */
+ public void setSignatureNote(String note);
+
+ /**
* Gets the transparency of the placeholder
* @return transparency of the placeholder (0-255)
*/