X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2FAWsJob.java;h=e6535393af7b8d412ac53a36e8433aa6256a7808;hb=8a6fa9ea9900d0f106529c3f6283e7f9d76dd2cb;hp=17d361b6a9d00e801e6d54d1d04b8ecbd85d5a7a;hpb=153dd62dc91da13ae732600e6ea55ddbe15eab39;p=jalview.git diff --git a/src/jalview/ws/AWsJob.java b/src/jalview/ws/AWsJob.java index 17d361b..e653539 100644 --- a/src/jalview/ws/AWsJob.java +++ b/src/jalview/ws/AWsJob.java @@ -29,7 +29,8 @@ public abstract class AWsJob protected String jobId; /** - * @param jobId the jobId to set + * @param jobId + * the jobId to set */ public void setJobId(String jobId) { @@ -47,7 +48,8 @@ public abstract class AWsJob int allowedServerExceptions = 3; /** - * @param allowedServerExceptions the allowedServerExceptions to set + * @param allowedServerExceptions + * the allowedServerExceptions to set */ public void setAllowedServerExceptions(int allowedServerExceptions) { @@ -61,7 +63,8 @@ public abstract class AWsJob protected boolean submitted = false; /** - * @param jobnum the jobnum to set + * @param jobnum + * the jobnum to set */ public void setJobnum(int jobnum) { @@ -69,7 +72,8 @@ public abstract class AWsJob } /** - * @param submitted the submitted to set + * @param submitted + * the submitted to set */ public void setSubmitted(boolean submitted) { @@ -77,7 +81,8 @@ public abstract class AWsJob } /** - * @param subjobComplete the subjobComplete to set + * @param subjobComplete + * the subjobComplete to set */ public void setSubjobComplete(boolean subjobComplete) { @@ -203,14 +208,19 @@ public abstract class AWsJob abstract public String getStatus(); abstract public boolean hasResponse(); + abstract public void clearResponse(); + abstract public String getState(); + /** * generates response using the abstract service flags. - * @return a standard state response + * + * @return a standard state response */ - protected String _defaultState() { - + protected String _defaultState() + { + String state = ""; return state; }