@Validated public class CrawlStatus extends Object
| Constructor and Description |
|---|
CrawlStatus() |
| Modifier and Type | Method and Description |
|---|---|
CrawlStatus |
addMimeTypesItem(MimeCounter mimeTypesItem) |
CrawlStatus |
addSourcesItem(String sourcesItem) |
CrawlStatus |
addStartUrlsItem(String startUrlsItem) |
CrawlStatus |
auId(String auId) |
CrawlStatus |
auName(String auName) |
CrawlStatus |
bytesFetched(Long bytesFetched) |
CrawlStatus |
crawlerId(String crawlerId) |
CrawlStatus |
depth(Integer depth) |
CrawlStatus |
endTime(Long endTime) |
boolean |
equals(Object o) |
CrawlStatus |
errors(Counter errors) |
CrawlStatus |
excludedItems(Counter excludedItems) |
CrawlStatus |
fetchedItems(Counter fetchedItems) |
String |
getAuId()
The id for the au.
|
String |
getAuName()
The name for the au.
|
Long |
getBytesFetched()
The number of bytes fetched.
|
String |
getCrawlerId()
The id of the crawler used for this crawl.
|
Integer |
getDepth()
The depth of the crawl.
|
Long |
getEndTime()
The timestamp for the end of the crawl.
|
Counter |
getErrors()
Get errors
|
Counter |
getExcludedItems()
Get excludedItems
|
Counter |
getFetchedItems()
Get fetchedItems
|
String |
getJobId()
The id for the crawl.
|
org.lockss.util.rest.crawler.JobStatus |
getJobStatus()
Get jobStatus
|
List<MimeCounter> |
getMimeTypes()
The list of urls by mimeType.
|
Counter |
getNotModifiedItems()
Get notModifiedItems
|
Counter |
getParsedItems()
Get parsedItems
|
Counter |
getPendingItems()
Get pendingItems
|
Integer |
getPriority()
The priority for this crawl.
|
String |
getProxy()
The proxy used for crawling.
|
Integer |
getRefetchDepth()
The refetch depth of the crawl.
|
List<String> |
getSources()
The sources to use for the crawl.
|
Long |
getStartTime()
The timestamp for the start of crawl.
|
List<String> |
getStartUrls()
The array of start urls.
|
String |
getType()
The type of crawl.
|
int |
hashCode() |
CrawlStatus |
isActive(Boolean isActive) |
CrawlStatus |
isError(Boolean isError) |
Boolean |
isIsActive()
True if the crawl is active.
|
Boolean |
isIsError()
True if the crawl has errored.
|
Boolean |
isIsWaiting()
True if the crawl waiting to start.
|
CrawlStatus |
isWaiting(Boolean isWaiting) |
CrawlStatus |
jobId(String jobId) |
CrawlStatus |
jobStatus(org.lockss.util.rest.crawler.JobStatus jobStatus) |
CrawlStatus |
mimeTypes(List<MimeCounter> mimeTypes) |
CrawlStatus |
notModifiedItems(Counter notModifiedItems) |
CrawlStatus |
parsedItems(Counter parsedItems) |
CrawlStatus |
pendingItems(Counter pendingItems) |
CrawlStatus |
priority(Integer priority) |
CrawlStatus |
proxy(String proxy) |
CrawlStatus |
refetchDepth(Integer refetchDepth) |
void |
setAuId(String auId) |
void |
setAuName(String auName) |
void |
setBytesFetched(Long bytesFetched) |
void |
setCrawlerId(String crawlerId) |
void |
setDepth(Integer depth) |
void |
setEndTime(Long endTime) |
void |
setErrors(Counter errors) |
void |
setExcludedItems(Counter excludedItems) |
void |
setFetchedItems(Counter fetchedItems) |
void |
setIsActive(Boolean isActive) |
void |
setIsError(Boolean isError) |
void |
setIsWaiting(Boolean isWaiting) |
void |
setJobId(String jobId) |
void |
setJobStatus(org.lockss.util.rest.crawler.JobStatus jobStatus) |
void |
setMimeTypes(List<MimeCounter> mimeTypes) |
void |
setNotModifiedItems(Counter notModifiedItems) |
void |
setParsedItems(Counter parsedItems) |
void |
setPendingItems(Counter pendingItems) |
void |
setPriority(Integer priority) |
void |
setProxy(String proxy) |
void |
setRefetchDepth(Integer refetchDepth) |
void |
setSources(List<String> sources) |
void |
setStartTime(Long startTime) |
void |
setStartUrls(List<String> startUrls) |
void |
setType(String type) |
CrawlStatus |
sources(List<String> sources) |
CrawlStatus |
startTime(Long startTime) |
CrawlStatus |
startUrls(List<String> startUrls) |
String |
toString() |
CrawlStatus |
type(String type) |
public CrawlStatus jobId(String jobId)
@NotNull public String getJobId()
public void setJobId(String jobId)
public CrawlStatus auId(String auId)
@NotNull public String getAuId()
public void setAuId(String auId)
public CrawlStatus auName(String auName)
@NotNull public String getAuName()
public void setAuName(String auName)
public CrawlStatus type(String type)
@NotNull public String getType()
public void setType(String type)
public CrawlStatus startUrls(List<String> startUrls)
public CrawlStatus addStartUrlsItem(String startUrlsItem)
@NotNull public List<String> getStartUrls()
public CrawlStatus priority(Integer priority)
@NotNull public Integer getPriority()
public void setPriority(Integer priority)
public CrawlStatus crawlerId(String crawlerId)
@NotNull public String getCrawlerId()
public void setCrawlerId(String crawlerId)
public CrawlStatus sources(List<String> sources)
public CrawlStatus addSourcesItem(String sourcesItem)
public CrawlStatus depth(Integer depth)
public Integer getDepth()
public void setDepth(Integer depth)
public CrawlStatus refetchDepth(Integer refetchDepth)
public Integer getRefetchDepth()
public void setRefetchDepth(Integer refetchDepth)
public CrawlStatus proxy(String proxy)
public String getProxy()
public void setProxy(String proxy)
public CrawlStatus startTime(Long startTime)
@NotNull public Long getStartTime()
public void setStartTime(Long startTime)
public CrawlStatus endTime(Long endTime)
@NotNull public Long getEndTime()
public void setEndTime(Long endTime)
public CrawlStatus jobStatus(org.lockss.util.rest.crawler.JobStatus jobStatus)
@NotNull public org.lockss.util.rest.crawler.JobStatus getJobStatus()
public void setJobStatus(org.lockss.util.rest.crawler.JobStatus jobStatus)
public CrawlStatus isWaiting(Boolean isWaiting)
public Boolean isIsWaiting()
public void setIsWaiting(Boolean isWaiting)
public CrawlStatus isActive(Boolean isActive)
public Boolean isIsActive()
public void setIsActive(Boolean isActive)
public CrawlStatus isError(Boolean isError)
public Boolean isIsError()
public void setIsError(Boolean isError)
public CrawlStatus bytesFetched(Long bytesFetched)
public Long getBytesFetched()
public void setBytesFetched(Long bytesFetched)
public CrawlStatus fetchedItems(Counter fetchedItems)
public Counter getFetchedItems()
public void setFetchedItems(Counter fetchedItems)
public CrawlStatus excludedItems(Counter excludedItems)
public Counter getExcludedItems()
public void setExcludedItems(Counter excludedItems)
public CrawlStatus notModifiedItems(Counter notModifiedItems)
public Counter getNotModifiedItems()
public void setNotModifiedItems(Counter notModifiedItems)
public CrawlStatus parsedItems(Counter parsedItems)
public Counter getParsedItems()
public void setParsedItems(Counter parsedItems)
public CrawlStatus pendingItems(Counter pendingItems)
public Counter getPendingItems()
public void setPendingItems(Counter pendingItems)
public CrawlStatus errors(Counter errors)
public Counter getErrors()
public void setErrors(Counter errors)
public CrawlStatus mimeTypes(List<MimeCounter> mimeTypes)
public CrawlStatus addMimeTypesItem(MimeCounter mimeTypesItem)
public List<MimeCounter> getMimeTypes()
public void setMimeTypes(List<MimeCounter> mimeTypes)
Copyright © 2000–2023 LOCKSS Program. All rights reserved.