Hit.java
978 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* javax.jcr.Node
* javax.jcr.RepositoryException
* org.apache.sling.api.resource.Resource
* org.apache.sling.api.resource.ValueMap
*/
package com.day.cq.search.result;
import java.util.Map;
import javax.jcr.Node;
import javax.jcr.RepositoryException;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ValueMap;
public interface Hit {
public long getIndex();
public Map<String, String> getExcerpts() throws RepositoryException;
public String getExcerpt() throws RepositoryException;
public Resource getResource() throws RepositoryException;
public Node getNode() throws RepositoryException;
public String getPath() throws RepositoryException;
public ValueMap getProperties() throws RepositoryException;
public String getTitle() throws RepositoryException;
public double getScore() throws RepositoryException;
}