Hit.java 978 Bytes
/*
 * 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;
}