diff options
| -rw-r--r-- | spss.server/src/at/gv/egovernment/moa/spss/server/config/ConfigurationPartsBuilder.java | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/spss.server/src/at/gv/egovernment/moa/spss/server/config/ConfigurationPartsBuilder.java b/spss.server/src/at/gv/egovernment/moa/spss/server/config/ConfigurationPartsBuilder.java index 898e4a6f2..b5040d33e 100644 --- a/spss.server/src/at/gv/egovernment/moa/spss/server/config/ConfigurationPartsBuilder.java +++ b/spss.server/src/at/gv/egovernment/moa/spss/server/config/ConfigurationPartsBuilder.java @@ -765,6 +765,10 @@ public class ConfigurationPartsBuilder {          if (reasonCodesSB.length() > 0) reasonCodesSB.append(" ");            reasonCodesSB.append(getElementValue(reasonCodeElem, ".", "").trim());        } +      String indirectCRLIssuer = getElementValue(dpElem, CONF + "IndirectCRLIssuer", null); +      if (indirectCRLIssuer != null) { +        issuerName = indirectCRLIssuer; +      }        return new CRLDistributionPoint(issuerName, uri, reasonCodesSB.toString());      }      else | 
