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

View File

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