View Javadoc

1   /*
2    * $Id: QuerierAborted.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  public class QuerierAborted extends QuerierStatus implements QuerierClosed {
12     
13     public QuerierAborted(QuerierStatus previousStatus) {
14        super(previousStatus, ABORTED);
15     }
16     
17     public QueryState getState() { return QueryState.ABORTED; }
18     
19  }
20  
21  /*
22  $Log: QuerierAborted.java,v $
23  Revision 1.1.1.1  2005/02/17 18:37:35  mch
24  Initial checkin
25  
26  Revision 1.1.1.1  2005/02/16 17:11:24  mch
27  Initial checkin
28  
29  Revision 1.2.30.2  2004/11/26 18:17:21  mch
30  More status persisting, browsing and aborting
31  
32  Revision 1.2.30.1  2004/11/25 18:33:43  mch
33  more status (incl persisting) more tablewriting lots of fixes
34  
35  Revision 1.2  2004/10/01 18:04:58  mch
36  Some factoring out of status stuff, added monitor page
37  
38  Revision 1.1  2004/09/28 15:02:13  mch
39  Merged PAL and server packages
40  
41  Revision 1.2  2004/03/15 19:16:12  mch
42  Lots of fixes to status updates
43  
44  Revision 1.1  2004/03/12 04:45:26  mch
45  It05 MCH Refactor
46  
47   */