aboutsummaryrefslogtreecommitdiff
path: root/id.server/src/at/gv/egovernment/moa/id/config/auth/OAAuthParameter.java
diff options
context:
space:
mode:
Diffstat (limited to 'id.server/src/at/gv/egovernment/moa/id/config/auth/OAAuthParameter.java')
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/config/auth/OAAuthParameter.java52
1 files changed, 50 insertions, 2 deletions
diff --git a/id.server/src/at/gv/egovernment/moa/id/config/auth/OAAuthParameter.java b/id.server/src/at/gv/egovernment/moa/id/config/auth/OAAuthParameter.java
index ad4dd4b62..4a41f9e75 100644
--- a/id.server/src/at/gv/egovernment/moa/id/config/auth/OAAuthParameter.java
+++ b/id.server/src/at/gv/egovernment/moa/id/config/auth/OAAuthParameter.java
@@ -9,6 +9,11 @@ import at.gv.egovernment.moa.id.config.OAParameter;
* @author Stefan Knirsch
* @version $Id$
*/
+/**
+ *
+ *
+ * @author Harald Bratko
+ */
public class OAAuthParameter extends OAParameter {
/**
* Sercurity Layer version
@@ -51,6 +56,14 @@ public class OAAuthParameter extends OAParameter {
* determines whether the certificate is to be included in the authentication data
*/
private boolean provideCertificate;
+ /**
+ * url to a template for web page "Auswahl der Bürgerkartenumgebung"
+ */
+ private String bkuSelectionTemplateURL;
+ /**
+ * template for web page "Anmeldung mit Bürgerkarte"
+ */
+ private String templateURL;
/**
* Returns <code>true</code> if the Security Layer version is version 1.2,
@@ -127,6 +140,25 @@ public class OAAuthParameter extends OAParameter {
public String getKeyBoxIdentifier() {
return keyBoxIdentifier;
}
+
+ /**
+ * Returns the BkuSelectionTemplate url.
+ * @return The BkuSelectionTemplate url or <code>null</code> if no url for
+ * a BkuSelectionTemplate is set.
+ */
+ public String getBkuSelectionTemplateURL() {
+ return bkuSelectionTemplateURL;
+ }
+
+ /**
+ * Returns the TemplateURL url.
+ * @return The TemplateURL url or <code>null</code> if no url for
+ * a Template is set.
+ */
+ public String getTemplateURL() {
+ return templateURL;
+ }
+
/**
* Sets the security layer version.
* Also sets {@link slVersion12} to <code>true</code> if the Security Layer
@@ -192,6 +224,22 @@ public class OAAuthParameter extends OAParameter {
public void setKeyBoxIdentier(String keyBoxIdentifier) {
this.keyBoxIdentifier = keyBoxIdentifier;
}
-
-
+
+ /**
+ * Sets the BkuSelectionTemplate url.
+ * @param bkuSelectionTemplateURL The url string specifying the location
+ * of a BkuSelectionTemplate.
+ */
+ public void setBkuSelectionTemplateURL(String bkuSelectionTemplateURL) {
+ this.bkuSelectionTemplateURL = bkuSelectionTemplateURL;
+ }
+
+ /**
+ * Sets the Template url.
+ * @param templateURL The url string specifying the location
+ * of a Template.
+ */
+ public void setTemplateURL(String templateURL) {
+ this.templateURL = templateURL;
+ }
}