diff options
Diffstat (limited to 'common/src/at/gv/egovernment/moa/util')
-rw-r--r-- | common/src/at/gv/egovernment/moa/util/Constants.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/common/src/at/gv/egovernment/moa/util/Constants.java b/common/src/at/gv/egovernment/moa/util/Constants.java index edab2b41e..48b633b94 100644 --- a/common/src/at/gv/egovernment/moa/util/Constants.java +++ b/common/src/at/gv/egovernment/moa/util/Constants.java @@ -1,5 +1,7 @@ package at.gv.egovernment.moa.util; +import java.util.HashMap; + /** * Contains various constants used throughout the system. * @@ -256,5 +258,10 @@ public interface Constants { * Local name of request for verifying an XML signature. */ public static final String MOA_SPSS_VERIFY_XML_REQUEST = "VerifiyXMLSignatureRequest"; - + + /** + * A map used to map namespace prefixes to namespace URIs + */ + public static HashMap nSMap = new HashMap(5); + } |