-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #123 from snoopdave/solr-impl
Isolate Lucene API in search.lucene
- Loading branch information
Showing
33 changed files
with
1,014 additions
and
593 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
app/src/main/java/org/apache/roller/weblogger/business/search/SearchResultList.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. The ASF licenses this file to You | ||
* under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. For additional information regarding | ||
* copyright in this work, please see the NOTICE file in the top level | ||
* directory of this distribution. | ||
*/ | ||
|
||
/* Created on March 8, 2023 */ | ||
|
||
package org.apache.roller.weblogger.business.search; | ||
|
||
import java.util.List; | ||
import java.util.Set; | ||
import org.apache.roller.weblogger.pojos.wrapper.WeblogEntryWrapper; | ||
|
||
public class SearchResultList { | ||
int limit; | ||
int offset; | ||
Set<String> categories; | ||
List<WeblogEntryWrapper> results; | ||
public SearchResultList( | ||
List<WeblogEntryWrapper> results, Set<String> categories, int limit, int offset) { | ||
this.results = results; | ||
this.categories = categories; | ||
this.limit = limit; | ||
this.offset = offset; | ||
} | ||
public int getLimit() { | ||
return limit; | ||
} | ||
public int getOffset() { | ||
return offset; | ||
} | ||
public List<WeblogEntryWrapper> getResults() { | ||
return results; | ||
} | ||
public Set<String> getCategories() { | ||
return categories; | ||
} | ||
} |
51 changes: 51 additions & 0 deletions
51
app/src/main/java/org/apache/roller/weblogger/business/search/SearchResultMap.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. The ASF licenses this file to You | ||
* under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. For additional information regarding | ||
* copyright in this work, please see the NOTICE file in the top level | ||
* directory of this distribution. | ||
*/ | ||
|
||
/* Created on March 8, 2023 */ | ||
|
||
package org.apache.roller.weblogger.business.search; | ||
|
||
import java.util.Date; | ||
import java.util.Map; | ||
import java.util.Set; | ||
import org.apache.roller.weblogger.pojos.wrapper.WeblogEntryWrapper; | ||
|
||
public class SearchResultMap { | ||
int limit; | ||
int offset; | ||
Set<String> categories; | ||
Map<Date, Set<WeblogEntryWrapper>> results; | ||
public SearchResultMap(Map<Date, Set<WeblogEntryWrapper>> results, Set<String> categories, int limit, int offset) { | ||
this.results = results; | ||
this.categories = categories; | ||
this.limit = limit; | ||
this.offset = offset; | ||
} | ||
public int getLimit() { | ||
return limit; | ||
} | ||
public int getOffset() { | ||
return offset; | ||
} | ||
public Map<Date, Set<WeblogEntryWrapper>> getResults() { | ||
return results; | ||
} | ||
public Set<String> getCategories() { | ||
return categories; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.