ISCC
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user