![JAR search and dependency download from the Maven repository](/logo.png)
net.intelie.live.plugins.messenger.search.document.SearchableDocImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-messenger Show documentation
Show all versions of plugin-messenger Show documentation
Intelie Live Messenger Plugin
The newest version!
package net.intelie.live.plugins.messenger.search.document;
import org.apache.lucene.document.Document;
public class SearchableDocImpl implements SearchableDoc {
private final Document document;
public SearchableDocImpl(Document foundDoc){
document = foundDoc;
}
@Override
public String get(String name) {
return document.get(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy