X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2FAWsJob.java;h=1b89758cdaf9d2ec1ff11698b66d53c612ec9ff2;hb=a45774ee31d9f35d4eff46d54d7deab719afb092;hp=17d361b6a9d00e801e6d54d1d04b8ecbd85d5a7a;hpb=153dd62dc91da13ae732600e6ea55ddbe15eab39;p=jalview.git diff --git a/src/jalview/ws/AWsJob.java b/src/jalview/ws/AWsJob.java index 17d361b..1b89758 100644 --- a/src/jalview/ws/AWsJob.java +++ b/src/jalview/ws/AWsJob.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6) - * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7) + * Copyright (C) 2011 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle * * This file is part of Jalview. * @@ -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; }