aboutsummaryrefslogtreecommitdiff
path: root/common/src
diff options
context:
space:
mode:
authorgregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-01-18 11:06:28 +0000
committergregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-01-18 11:06:28 +0000
commitca508dd0091a1e3736a6b98543996a47cc6a1835 (patch)
treef2c20842745623f747ad1173fb17903165805df2 /common/src
parente5b40dcb121128907b858f029a149e120922033b (diff)
downloadmoa-id-spss-ca508dd0091a1e3736a6b98543996a47cc6a1835.tar.gz
moa-id-spss-ca508dd0091a1e3736a6b98543996a47cc6a1835.tar.bz2
moa-id-spss-ca508dd0091a1e3736a6b98543996a47cc6a1835.zip
Unterstützung des aktuellen NS für ECDSA-XML-Strukturen (dsig-more statt buergerkarte).
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@220 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'common/src')
-rw-r--r--common/src/at/gv/egovernment/moa/util/Constants.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/common/src/at/gv/egovernment/moa/util/Constants.java b/common/src/at/gv/egovernment/moa/util/Constants.java
index e63dbf015..0d8f19064 100644
--- a/common/src/at/gv/egovernment/moa/util/Constants.java
+++ b/common/src/at/gv/egovernment/moa/util/Constants.java
@@ -67,7 +67,15 @@ public interface Constants {
/** URI of the ECDSA XML namespace */
public static final String ECDSA_NS_URI =
+ "http://www.w3.org/2001/04/xmldsig-more#";
+
+ /** Ancient URI for the ECDSA XML namespace **/
+ public static final String ECDSA_NS_URI_ANCIENT =
"http://www.buergerkarte.at/namespaces/ecdsa/200206030#";
+
+ /** Wrong URI for the ECDSA XML namespace, used by the ZMR **/
+ public static final String ECDSA_NS_URI_WRONG = // TODO Entfernen, sobald ZMR umgestellt hat
+ "http://www.w3.org/2004/01/xmldsig-more#";
/** Prefix used for ECDSA namespace */
public static final String ECDSA_PREFIX = "ecdsa";
@@ -76,6 +84,14 @@ public interface Constants {
public static final String ECDSA_SCHEMA_LOCATION =
SCHEMA_ROOT + "ECDSAKeyValue.xsd";
+ /** Local location of ECDSA XML schema definition (ancient version) */
+ public static final String ECDSA_SCHEMA_LOCATION_ANCIENT =
+ SCHEMA_ROOT + "ECDSAKeyValue.ancient.xsd";
+
+ /** Local location of ECDSA XML schema definition (wrong ZMR version) */
+ public static final String ECDSA_SCHEMA_LOCATION_WRONG =
+ SCHEMA_ROOT + "ECDSAKeyValue.wrong.xsd";
+
/** URI of the PersonData XML namespace. */
public static final String PD_NS_URI =
"http://reference.e-government.gv.at/namespace/persondata/20020228#";