diff --git a/src/main/java/com/dreamworks/boditech/driver/task/Executor.java b/src/main/java/com/dreamworks/boditech/driver/task/Executor.java index 717bfa7..18036a3 100644 --- a/src/main/java/com/dreamworks/boditech/driver/task/Executor.java +++ b/src/main/java/com/dreamworks/boditech/driver/task/Executor.java @@ -211,63 +211,18 @@ public class Executor implements Runnable { } } - /** - * get executor status - * @return executor status - */ + // get working status public String getWorkingStatus() { return this.workingStatus; } + // get status + public Integer getStatus() { + return this.status; + } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - /** - * get device instance - * @return device instance - */ + // get device instance public Device getDevice() { return this.device; } - - - - - - }