diff options
| -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 = | 
