Package com.logicaldoc.webservice.model
Class WSSearchResult
- java.lang.Object
-
- com.logicaldoc.webservice.model.WSSearchResult
-
public class WSSearchResult extends Object
Represents a web service search result- Since:
- 5.2
- Author:
- Matteo Caruso - LogicalDOC
-
-
Constructor Summary
Constructors Constructor Description WSSearchResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getEstimatedHitsNumber()
WSDocument[]
getHits()
int
getMoreHits()
long
getTime()
int
getTotalHits()
void
setEstimatedHitsNumber(long estimatedHitsNumber)
void
setHits(WSDocument[] hits)
void
setMoreHits(int moreHits)
void
setTime(long time)
void
setTotalHits(int totalHits)
-
-
-
Method Detail
-
getTotalHits
public int getTotalHits()
-
setTotalHits
public void setTotalHits(int totalHits)
-
getTime
public long getTime()
-
setTime
public void setTime(long time)
-
getEstimatedHitsNumber
public long getEstimatedHitsNumber()
-
setEstimatedHitsNumber
public void setEstimatedHitsNumber(long estimatedHitsNumber)
-
getMoreHits
public int getMoreHits()
-
setMoreHits
public void setMoreHits(int moreHits)
-
getHits
public WSDocument[] getHits()
-
setHits
public void setHits(WSDocument[] hits)
-
-