]> source.dussan.org Git - archiva.git/blob
4fc3e22b7332d4a11cc7e522d87b8190c4360d19
[archiva.git] /
1 package org.apache.archiva.indexer.search;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import java.util.ArrayList;
23 import java.util.HashMap;
24 import java.util.List;
25 import java.util.Map;
26
27
28 /**
29  * SearchResults 
30  *
31  * @version $Id: SearchResults.java 742859 2009-02-10 05:35:05Z jdumay $
32  */
33 public class SearchResults
34 {
35     private List repositories = new ArrayList();
36
37     private Map<String, SearchResultHit> hits = new HashMap();
38
39     private int totalHits;
40
41     private SearchResultLimits limits;
42
43     public SearchResults()
44     {
45         /* do nothing */
46     }
47
48     // for new RepositorySearch
49     public void addHit( String id, SearchResultHit hit )
50     {   
51         hits.put( id, hit );
52     }
53
54     /**
55      * Get the list of {@link SearchResultHit} objects.
56      * 
57      * @return the list of {@link SearchResultHit} objects.
58      */
59     public List<SearchResultHit> getHits()
60     {
61         return new ArrayList( hits.values() );
62     }
63     
64     public Map<String, SearchResultHit> getHitsMap()
65     {
66         return hits;
67     }
68
69     public List getRepositories()
70     {
71         return repositories;
72     }
73
74     public boolean isEmpty()
75     {
76         return hits.isEmpty();
77     }
78
79     public void setRepositories( List repositories )
80     {
81         this.repositories = repositories;
82     }
83
84     public SearchResultLimits getLimits()
85     {
86         return limits;
87     }
88
89     public void setLimits( SearchResultLimits limits )
90     {
91         this.limits = limits;
92     }
93
94     public int getTotalHits()
95     {
96         return totalHits;
97     }
98
99     public void setTotalHits( int totalHits )
100     {
101         this.totalHits = totalHits;
102     }
103 }