se.l4.silo.search.ScoringItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of silo-search-api Show documentation
Show all versions of silo-search-api Show documentation
API for Lucene-based querying for Silo.
The newest version!
package se.l4.silo.search;
public class ScoringItem
{
private final String id;
private final Object payload;
public ScoringItem(String id, Object payload)
{
this.id = id;
this.payload = payload;
}
public String getId()
{
return id;
}
public Object getPayload()
{
return payload;
}
}