View Javadoc
1   package org.exoplatform.wiki.service.search;
2   
3   public class WikiSearchData extends SearchData {
4   
5     public WikiSearchData(String title, String content, String wikiType, String wikiOwner, String pageId) {
6       super(title, content, wikiType, wikiOwner, pageId);
7     }
8   
9     public WikiSearchData(String wikiType, String wikiOwner, String pageId) {
10      this(null, null, wikiType, wikiOwner, pageId);
11    }
12  
13    public WikiSearchData(String title, String content, String wikiType, String wikiOwner) {
14      this(title, content, wikiType, wikiOwner, null);
15    }
16  
17  }