Skip to content

Commit ec015e5

Browse files
Remove 'getNextStep' from JobMonitor (#2475)
1 parent 87fd3ad commit ec015e5

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

marklogic-data-hub/src/main/java/com/marklogic/hub/job/JobMonitor.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,4 @@ public interface JobMonitor {
5050

5151
List<String> getBatchResponse(String jobId, String batchId);
5252

53-
/**
54-
* The next step to be executed
55-
* @param jobId the id of the job
56-
* @return string denoting the next step of the job
57-
*/
58-
59-
String getNextStep(String jobId);
6053
}

marklogic-data-hub/src/main/java/com/marklogic/hub/job/impl/JobMonitorImpl.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,6 @@ public List<String> getBatchResponse(String jobId, String batchId) {
117117
return null;
118118
}
119119

120-
//TODO Implement this after flow artifact can be created
121-
public String getNextStep(String jobId) {
122-
return null;
123-
}
124-
125120
public class Jobs extends ResourceManager {
126121
private static final String NAME = "ml:jobs";
127122

0 commit comments

Comments
 (0)