adamsaghy commented on code in PR #6116:
URL: https://github.com/apache/fineract/pull/6116#discussion_r3639955950
##########
fineract-core/src/main/java/org/apache/fineract/infrastructure/dataqueries/data/ResultsetColumnHeaderData.java:
##########
@@ -149,6 +149,10 @@ public boolean hasColumnValues() {
return columnValues != null && !columnValues.isEmpty();
}
+ public List<ResultsetColumnValueData> getColumnValues() {
Review Comment:
You can use Lombok
##########
fineract-core/src/main/java/org/apache/fineract/infrastructure/dataqueries/data/ResultsetColumnValueData.java:
##########
@@ -49,4 +49,12 @@ public boolean matches(final String match) {
public boolean codeMatches(final Integer match) {
return match.intValue() == this.id;
}
+
+ public int getId() {
Review Comment:
You can use Lombok
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]