Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ public class AutoExportResult {
private Integer updated;
private Integer unmapped;
private Integer matched;
private Integer skipped;
private Integer failed;

public Integer getTotal() {
Expand Down Expand Up @@ -40,6 +41,14 @@ public void setMatched(Integer matched) {
this.matched = matched;
}

public Integer getSkipped() {
return skipped;
}

public void setSkipped(Integer skipped) {
this.skipped = skipped;
}

public Integer getFailed() {
return failed;
}
Expand All @@ -65,6 +74,7 @@ public String toString() {
", unmapped=" + unmapped +
", matched=" + matched +
", failed=" + failed +
", skipped=" + skipped +
'}';
}
}