1
2
3
4
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44