aboutsummaryrefslogtreecommitdiff
path: root/spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/config/ConfigurationPartsBuilder.java
diff options
context:
space:
mode:
Diffstat (limited to 'spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/config/ConfigurationPartsBuilder.java')
-rw-r--r--spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/config/ConfigurationPartsBuilder.java34
1 files changed, 2 insertions, 32 deletions
diff --git a/spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/config/ConfigurationPartsBuilder.java b/spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/config/ConfigurationPartsBuilder.java
index 51669026f..9e0dc7688 100644
--- a/spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/config/ConfigurationPartsBuilder.java
+++ b/spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/config/ConfigurationPartsBuilder.java
@@ -949,7 +949,6 @@ public class ConfigurationPartsBuilder {
String id = getElementValue(profileElem, CONF + "Id", null);
String trustAnchorsLocStr = getElementValue(profileElem, CONF + "TrustAnchorsLocation", null);
String signerCertsLocStr = getElementValue(profileElem, CONF + "SignerCertsLocation", null);
- String tslLocStr = getElementValue(profileElem, CONF + "TSLLocation", null);
URI trustAnchorsLocURI = null;
try
@@ -976,33 +975,7 @@ public class ConfigurationPartsBuilder {
}
- URI tslLocURI = null;
- if (tslLocStr != null) {
-
- try
- {
- tslLocURI = new URI(tslLocStr);
- if (!tslLocURI.isAbsolute()) { // make it absolute to the config file
- tslLocURI = new URI(configRoot_.toURL() + tslLocStr);
- }
- }
- catch (URIException e) {
- warn("config.14", new Object[] { "uriTSL", id, tslLocStr }, e);
- continue;
- }
- catch (MalformedURLException e)
- {
- warn("config.33", new Object[] {id}, e);
- continue;
- }
-
- File profileDirTSL = new File(tslLocURI.getPath());
- if (!profileDirTSL.exists() || !profileDirTSL.isDirectory()) {
- warn("config.27", new Object[] { "uriTSL", id });
- continue;
- }
- }
-
+
if (trustProfiles.containsKey(id)) {
warn("config.04", new Object[] { "TrustProfile", id });
continue;
@@ -1033,10 +1006,7 @@ public class ConfigurationPartsBuilder {
}
signerCertsLocStr = (signerCertsLocURI != null) ? signerCertsLocURI.toString() : null;
- String tslLocURIString = null;
- if (tslLocURI != null)
- tslLocURIString = tslLocURI.toString();
- TrustProfile profile = new TrustProfile(id, trustAnchorsLocURI.toString(), signerCertsLocStr, tslLocURIString);
+ TrustProfile profile = new TrustProfile(id, trustAnchorsLocURI.toString(), signerCertsLocStr);
trustProfiles.put(id, profile);
}