diff options
author | rudolf <rudolf@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2004-04-26 12:45:31 +0000 |
---|---|---|
committer | rudolf <rudolf@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2004-04-26 12:45:31 +0000 |
commit | 86b51fd16f65996db588ee4a20bfda177b2dcd2e (patch) | |
tree | 767e95a80ff3886b50732cde289e6a1528d102ba /common | |
parent | e9969dd0ddf49fa575c47600d773927aa5235a36 (diff) | |
download | moa-id-spss-86b51fd16f65996db588ee4a20bfda177b2dcd2e.tar.gz moa-id-spss-86b51fd16f65996db588ee4a20bfda177b2dcd2e.tar.bz2 moa-id-spss-86b51fd16f65996db588ee4a20bfda177b2dcd2e.zip |
Namensraum für XMLLoginParameterResolver hinzugefügt
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@105 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'common')
-rw-r--r-- | common/src/at/gv/egovernment/moa/util/Constants.java | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/common/src/at/gv/egovernment/moa/util/Constants.java b/common/src/at/gv/egovernment/moa/util/Constants.java index cf703eb7c..e63dbf015 100644 --- a/common/src/at/gv/egovernment/moa/util/Constants.java +++ b/common/src/at/gv/egovernment/moa/util/Constants.java @@ -164,7 +164,7 @@ public interface Constants { /** URI of the Exclusive Canonicalization XML namespace */ public static final String DSIG_EC_NS_URI = "http://www.w3.org/2001/10/xml-exc-c14n#"; - + /** Prefix used for the Exclusive Canonicalization XML namespace */ public static final String DSIG_EC_PREFIX = "ec"; @@ -172,6 +172,14 @@ public interface Constants { public static final String DSIG_EC_SCHEMA_LOCATION = SCHEMA_ROOT + "exclusive-canonicalization.xsd"; + /** URI of the XMLLoginParameterResolver Configuration XML namespace */ + public static final String XMLLPR_NS_URI="http://reference.e-government.gv.at/namespace/moa/20020822#/xmllpr20030814"; + + /** Local location of the XMLLoginParameterResolver Configuration XML schema definition */ + public static final String XMLLPR_SCHEMA_LOCATION = + SCHEMA_ROOT + "MOAIdentities.xsd"; + + /** * Contains all namespaces and local schema locations for XML schema * definitions relevant for MOA. For use in validating XML parsers. @@ -190,7 +198,8 @@ public interface Constants { + (XSI_NS_URI + " " + XSI_SCHEMA_LOCATION + " ") + (DSIG_NS_URI + " " + DSIG_SCHEMA_LOCATION + " ") + (DSIG_FILTER2_NS_URI + " " + DSIG_FILTER2_SCHEMA_LOCATION + " ") - + (DSIG_EC_NS_URI + " " + DSIG_EC_SCHEMA_LOCATION); + + (DSIG_EC_NS_URI + " " + DSIG_EC_SCHEMA_LOCATION + " ") + + (XMLLPR_NS_URI + " " + XMLLPR_SCHEMA_LOCATION); /** Security Layer manifest type URI. */ public static final String SL_MANIFEST_TYPE_URI = |