Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 795cd864 authored by Joze RIHTARSIC's avatar Joze RIHTARSIC
Browse files

Use StringUtils for converting string to lowercase

parent c259d5b0
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@
package eu.europa.ec.edelivery.smp.conversion;
import org.apache.commons.lang3.StringUtils;
import org.oasis_open.docs.bdxr.ns.smp._2016._05.DocumentIdentifier;
import org.oasis_open.docs.bdxr.ns.smp._2016._05.ParticipantIdentifierType;
import org.springframework.beans.factory.annotation.Value;
......@@ -46,9 +47,9 @@ public class CaseSensitivityNormalizer {
}
public ParticipantIdentifierType normalizeParticipantIdentifier(String scheme, String value) {
if (!caseSensitiveParticipantSchemes.contains(scheme.toLowerCase())) {
scheme = scheme.toLowerCase();
value = value.toLowerCase();
if (!caseSensitiveParticipantSchemes.contains(StringUtils.lowerCase(scheme))) {
scheme = StringUtils.lowerCase(scheme);
value = StringUtils.lowerCase(value);
}
return new ParticipantIdentifierType(value, scheme);
}
......@@ -66,11 +67,9 @@ public class CaseSensitivityNormalizer {
}
public DocumentIdentifier normalizeDocumentIdentifier( String scheme, String value) {
if (scheme== null || !caseSensitiveDocumentSchemes.contains(scheme.toLowerCase())) {
if (scheme!= null) {
scheme = scheme.toLowerCase();
}
value = value.toLowerCase();
if (!caseSensitiveDocumentSchemes.contains(StringUtils.lowerCase(scheme) )) {
scheme = StringUtils.lowerCase(scheme);
value = StringUtils.lowerCase(value);
}
return new DocumentIdentifier(value, scheme);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment