View Javadoc

1   /*
2    * $Id: SsapResults.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.service.ssap;
8   
9   import org.astrogrid.dataservice.queriers.Querier;
10  import org.astrogrid.dataservice.queriers.UrlListResults;
11  
12  /***
13   * Results which are a list of URLs
14   *
15   * @author M Hill
16   */
17  
18  public class SsapResults extends UrlListResults {
19  
20        /***
21      * Construct this wrapper around the given list of results
22      */
23     public SsapResults(Querier parentQuerier, String[] results) {
24        super(parentQuerier, results);
25     }
26  
27  }
28  
29  /*
30   $Log: SsapResults.java,v $
31   Revision 1.1.1.1  2005/02/17 18:37:35  mch
32   Initial checkin
33  
34   Revision 1.1.1.1  2005/02/16 17:11:24  mch
35   Initial checkin
36  
37   Revision 1.1.2.1  2004/12/05 19:38:37  mch
38   changed skynode to 'raw' soap (from axis) and bug fixes
39  
40   Revision 1.1  2004/11/11 23:23:29  mch
41   Prepared framework for SSAP and SIAP
42  
43  
44   */