X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2FAWsJob.java;h=ed88ea96dbb8305eadc38b8bc49542740323adf4;hb=c41398473f1493a06f28da53be50630a0f6e6f6d;hp=0b560bfebf6c55493bda268cc4d5cbca69b6c1fa;hpb=c19d2a91ca05e052e3408bf5852d88eb5d0608f1;p=jalview.git diff --git a/src/jalview/ws/AWsJob.java b/src/jalview/ws/AWsJob.java index 0b560bf..ed88ea9 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.9.0b2) - * Copyright (C) 2015 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -20,6 +20,14 @@ */ package jalview.ws; +import jalview.analysis.SeqsetUtils.SequenceInfo; +import jalview.ws.params.ArgumentI; +import jalview.ws.params.WsParamSetI; + +import java.util.Hashtable; +import java.util.List; +import java.util.Map; + /** * Generic properties for an individual job within a Web Service Client thread. * Derived from jalview web services version 1 statuses, and revised for Jws2. @@ -145,6 +153,12 @@ public abstract class AWsJob */ protected boolean subjobComplete = false; + protected WsParamSetI preset = null; + + protected List arguments = null; + + protected Hashtable SeqNames = new Hashtable(); + public AWsJob() { } @@ -227,4 +241,47 @@ public abstract class AWsJob String state = ""; return state; } + + public void setPreset(WsParamSetI jobpreset) + { + preset = jobpreset; + } + + public void setArguments(List paramset) + { + arguments = paramset; + + } + + public boolean isPresetJob() + { + return preset!=null && arguments==null; + } + + public List getArguments() + { + return arguments; + } + + public WsParamSetI getPreset() + { + return preset; + } + + long nextChunk = 0; + + /** + * update the record of the last position in the log file read for this job + * + * @param nextChunk + */ + public void setnextChunk(long nextChunk) + { + this.nextChunk = nextChunk; + } + + public long getNextChunk() + { + return nextChunk; + } }