Sets the value of the 'status' field. A crawl status associated with the WebPage, can be of value STATUS_UNFETCHED - WebPage was not fetched yet, STATUS_FETCHED - WebPage was successfully fetched, STATUS_GONE - WebPage no longer exists, STATUS_REDIR_TEMP - WebPage temporarily redirects to other page
(java.lang.Integer value)
| 277 | * A crawl status associated with the WebPage, can be of value STATUS_UNFETCHED - WebPage was not fetched yet, STATUS_FETCHED - WebPage was successfully fetched, STATUS_GONE - WebPage no longer exists, STATUS_REDIR_TEMP - WebPage temporarily redirects to other page, STATUS_REDIR_PERM - WebPage permanently redirects to other page, STATUS_RETRY - Fetching unsuccessful, needs to be retried e.g. transient errors and STATUS_NOTMODIFIED - fetching successful - page is not modified * @param value the value to set. |
| 278 | */ |
| 279 | public void setStatus(java.lang.Integer value) { |
| 280 | this.status = value; |
| 281 | setDirty(1); |
| 282 | } |
| 283 | |
| 284 | /** |
| 285 | * Checks the dirty status of the 'status' field. A field is dirty if it represents a change that has not yet been written to the database. |
no outgoing calls