View Javadoc

1   /*
2    * $Id: QuerierComplete.java,v 1.1.1.1 2005/02/17 18:37:35 mch Exp $
3    *
4    * (C) Copyright Astrogrid...
5    */
6   
7   package org.astrogrid.dataservice.queriers.status;
8   
9   import org.astrogrid.query.QueryState;
10  
11  /*** Indicates the final state where the search has been carried out on the database
12   * the results processed and everything done and tidied up successfully */
13  
14  public class QuerierComplete extends QuerierStatus implements QuerierClosed
15  {
16     public QuerierComplete(QuerierStatus previousStatus) {
17        super(previousStatus, COMPLETE);
18     }
19     
20     public QueryState getState() { return QueryState.FINISHED; }
21     
22  }
23  
24  /*
25  $Log: QuerierComplete.java,v $
26  Revision 1.1.1.1  2005/02/17 18:37:35  mch
27  Initial checkin
28  
29  Revision 1.1.1.1  2005/02/16 17:11:24  mch
30  Initial checkin
31  
32  Revision 1.2.30.2  2004/11/26 18:17:21  mch
33  More status persisting, browsing and aborting
34  
35  Revision 1.2.30.1  2004/11/25 18:33:43  mch
36  more status (incl persisting) more tablewriting lots of fixes
37  
38  Revision 1.2  2004/10/01 18:04:58  mch
39  Some factoring out of status stuff, added monitor page
40  
41  Revision 1.1  2004/09/28 15:02:13  mch
42  Merged PAL and server packages
43  
44  Revision 1.3  2004/03/15 19:16:12  mch
45  Lots of fixes to status updates
46  
47  Revision 1.2  2004/03/15 17:11:31  mch
48  Better information
49  
50  Revision 1.1  2004/03/12 04:45:26  mch
51  It05 MCH Refactor
52  
53   */