This commit is contained in:
2024-04-04 15:16:40 +02:00
parent 884a279a4a
commit a1f23f4fc5
2 changed files with 6 additions and 6 deletions

View File

@@ -14,7 +14,7 @@ public class ApplicationInfoDTO {
private boolean delimitedIdentifier;
private boolean ansiPadding;
private boolean concatNullYieldNulls;
private boolean concatNullYieldsNull;
public String getName() {
return name;
@@ -79,12 +79,12 @@ public class ApplicationInfoDTO {
return this;
}
public boolean isConcatNullYieldNulls() {
return concatNullYieldNulls;
public boolean isConcatNullYieldsNull() {
return concatNullYieldsNull;
}
public ApplicationInfoDTO setConcatNullYieldNulls(boolean concatNullYieldNulls) {
this.concatNullYieldNulls = concatNullYieldNulls;
public ApplicationInfoDTO setConcatNullYieldsNull(boolean concatNullYieldNulls) {
this.concatNullYieldsNull = concatNullYieldNulls;
return this;
}

View File

@@ -852,7 +852,7 @@ public class EmsServices {
.setSalvataggiSoap(soap)
.setAnsiPadding(UtilityHashMap.<String>getValueIfExists(setupSection, "FLAG_ANSI_PADDING").equals("S"))
.setDelimitedIdentifier(UtilityHashMap.<String>getValueIfExists(setupSection, "DELIMITED_IDENTIFIER").equals("1"))
.setDelimitedIdentifier(UtilityHashMap.<String>getValueIfExists(setupSection, "FLAG_CONCAT_NULL_YIELDS_NULL").equals("S"));
.setConcatNullYieldsNull(UtilityHashMap.<String>getValueIfExists(setupSection, "FLAG_CONCAT_NULL_YIELDS_NULL").equals("S"));
applicationInfoDTOList.add(applicationInfoDTO);