]> source.dussan.org Git - archiva.git/blob
472bd1a821cd6667bb21ec96f721d7e3e848c6a1
[archiva.git] /
1 package org.apache.maven.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  * SearchResults 
29  *
30  * @version $Id$
31  */
32 public class SearchResults
33 {
34     private List repositories = new ArrayList();
35
36     private Map<String, SearchResultHit> hits = new HashMap();
37
38     private int totalHits;
39
40     private SearchResultLimits limits;
41
42     public SearchResults()
43     {
44         /* do nothing */
45     }
46
47     // for new RepositorySearch
48     public void addHit( String id, SearchResultHit hit )
49     {   
50         hits.put( id, hit );
51     }
52
53     /**
54      * Get the list of {@link SearchResultHit} objects.
55      * 
56      * @return the list of {@link SearchResultHit} objects.
57      */
58     public List<SearchResultHit> getHits()
59     {
60         return new ArrayList( hits.values() );
61     }
62     
63     public Map<String, SearchResultHit> getHitsMap()
64     {
65         return hits;
66     }
67
68     public List getRepositories()
69     {
70         return repositories;
71     }
72
73     public boolean isEmpty()
74     {
75         return hits.isEmpty();
76     }
77
78     public void setRepositories( List repositories )
79     {
80         this.repositories = repositories;
81     }
82
83     public SearchResultLimits getLimits()
84     {
85         return limits;
86     }
87
88     public void setLimits( SearchResultLimits limits )
89     {
90         this.limits = limits;
91     }
92
93     public int getTotalHits()
94     {
95         return totalHits;
96     }
97
98     public void setTotalHits( int totalHits )
99     {
100         this.totalHits = totalHits;
101     }
102 }