View Javadoc
1   package org.exoplatform.wiki.mow.core.api.wiki;
2   
3   import org.exoplatform.wiki.service.search.SearchResult;
4   
5   /**
6    * SearchResult for JCR
7    */
8   public class JCRSearchResult extends SearchResult {
9   
10    protected String path;
11  
12    public void setPath(String path) {
13      this.path = path;
14    }
15    public String getPath() {
16      return path;
17    }
18  
19  }