SimpleSearch.java
1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* javax.jcr.RepositoryException
*/
package com.day.cq.search;
import com.day.cq.search.Predicate;
import com.day.cq.search.Trends;
import com.day.cq.search.result.SearchResult;
import javax.jcr.RepositoryException;
import java.util.List;
public interface SimpleSearch {
public static final String RELATED_PREFIX = "related:";
public void setQuery(String var1);
public String getQuery();
public void setSearchIn(String var1);
public String getSearchIn();
public void setHitsPerPage(long var1);
public long getHitsPerPage();
public void setStart(long var1);
public long getStart();
public void addPredicate(Predicate var1);
public SearchResult getResult() throws RepositoryException;
public Trends getTrends();
public List<String> getRelatedQueries() throws RepositoryException;
public void setSearchProperties(String var1);
public String getSearchProperties();
}