Skip to content

Commit

Permalink
Add getter and setter method in LinkisJobStateResult
Browse files Browse the repository at this point in the history
  • Loading branch information
jefftlin committed Mar 15, 2023
1 parent 20c768f commit c96fa24
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ public class LinkisJobStateResult extends AbstractJobStateResult {

private Map<String, Object> dirFileTrees = new HashMap<>();

public Map<String, Object> getDirFileTrees() {
return dirFileTrees;
}

public void setDirFileTrees(Map<String, Object> dirFileTrees) {
this.dirFileTrees = dirFileTrees;
}

/**
* Convert the result data to state file tree
* @return state file tree
Expand Down

0 comments on commit c96fa24

Please sign in to comment.