diff options
Diffstat (limited to 'common/src')
| -rw-r--r-- | common/src/at/gv/egovernment/moa/util/Constants.java | 16 | 
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#"; | 
