diff options
author | Alexander Marsalek <amarsalek@iaik.tugraz.at> | 2021-02-15 10:38:44 +0100 |
---|---|---|
committer | Alexander Marsalek <amarsalek@iaik.tugraz.at> | 2021-02-15 10:38:44 +0100 |
commit | faca8b55b133adb7e01d891df1b45d24b7690111 (patch) | |
tree | 5f111c3f54f6f48a7357da263cd9c9272e2a7321 /connector_lib/src/main | |
parent | eeecdd8e6063298bb6414b9f6a8b0bc4cee2eba4 (diff) | |
download | National_eIDAS_Gateway-faca8b55b133adb7e01d891df1b45d24b7690111.tar.gz National_eIDAS_Gateway-faca8b55b133adb7e01d891df1b45d24b7690111.tar.bz2 National_eIDAS_Gateway-faca8b55b133adb7e01d891df1b45d24b7690111.zip |
Constants for GUI endpoints, load values from config, ID Austria signal controller
Diffstat (limited to 'connector_lib/src/main')
-rw-r--r-- | connector_lib/src/main/java/at/asitplus/eidas/specific/connector/MsEidasNodeConstants.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/connector_lib/src/main/java/at/asitplus/eidas/specific/connector/MsEidasNodeConstants.java b/connector_lib/src/main/java/at/asitplus/eidas/specific/connector/MsEidasNodeConstants.java index 379ed378..2c87a794 100644 --- a/connector_lib/src/main/java/at/asitplus/eidas/specific/connector/MsEidasNodeConstants.java +++ b/connector_lib/src/main/java/at/asitplus/eidas/specific/connector/MsEidasNodeConstants.java @@ -48,6 +48,10 @@ public class MsEidasNodeConstants { public static final String PROP_CONFIG_WEBCONTENT_TEMPLATES_CCSELECTION = "webcontent.templates.countryselection"; public static final String PROP_CONFIG_WEBCONTENT_TEMPLATES_OTHER_LOGIN_METHOD_SELECTION = "webcontent.templates" + ".otherLoginMethodselection"; + public static final String PROP_CONFIG_WEBCONTENT_TEMPLATES_RESIDENCY = "webcontent.templates" + + ".residency"; + public static final String PROP_CONFIG_WEBCONTENT_TEMPLATES_OTHER_CONTACTS_WITH_AUSTRIAN_EGOV = + "webcontent.templates.otherContactsWithAustrianEgov"; public static final String PROP_CONFIG_MONITORING_EIDASNODE_METADATAURL = "monitoring.eIDASNode.metadata.url"; @@ -142,7 +146,8 @@ public class MsEidasNodeConstants { public static final String ENDPOINT_COUNTRYSELECTION = "/myHomeCountry"; public static final String ENDPOINT_OTHERLOGINMETHODSELECTION = "/otherLoginMethod"; - + public static final String ENDPOINT_RESIDENCY_INPUT = "/residency"; + public static final String ENDPOINT_OTHER_CONTACTS_INPUT = "/otherContacts"; public static final String ENDPOINT_MONITORING_MONITOR = "/monitoring"; public static final String ENDPOINT_MONITORING_VERIFY = "/verify"; @@ -154,6 +159,8 @@ public class MsEidasNodeConstants { public static final String TEMPLATE_HTML_PVP_POSTBINDING = "pvp2_post_binding.html"; public static final String TEMPLATE_HTML_COUNTRYSELECTION = "countrySelection.html"; public static final String TEMPLATE_HTML_OTHERLOGINMETHODS = "chooseOtherLoginMethod.html"; + public static final String TEMPLATE_HTML_RESIDENCY = "residency.html"; + public static final String TEMPLATE_HTML_OTHERCONTACTSWITHAUSTRIANEGOV = "otherContactsWithAustrianEgov.html"; // ************ execution context and generic data ************ public static final String REQ_PARAM_SELECTED_COUNTRY = "selectedCountry"; public static final String REQ_PARAM_SELECTED_ENVIRONMENT = "selectedEnvironment"; |