-
public class CrawlStatusCodes.Companion
-
-
Field Summary
Fields Modifier and Type Field Description private final ByteUNFETCHEDprivate final ByteFETCHEDprivate final ByteGONEprivate final ByteREDIR_TEMPprivate final ByteREDIR_PERMprivate final ByteRETRYprivate final ByteNOTMODIFIEDpublic final static CrawlStatusCodes.CompanionINSTANCE
-
Method Summary
Modifier and Type Method Description final BytegetUNFETCHED()Page was not fetched yet. final BytegetFETCHED()Page was successfully fetched. final BytegetGONE()Page no longer exists. final BytegetREDIR_TEMP()Page temporarily redirects to other page. final BytegetREDIR_PERM()Page permanently redirects to other page. final BytegetRETRY()Fetching unsuccessful, needs to be retried (transient errors). final BytegetNOTMODIFIED()Fetching successful - page is not modified. -
-
Method Detail
-
getUNFETCHED
final Byte getUNFETCHED()
Page was not fetched yet.
-
getFETCHED
final Byte getFETCHED()
Page was successfully fetched.
-
getREDIR_TEMP
final Byte getREDIR_TEMP()
Page temporarily redirects to other page.
-
getREDIR_PERM
final Byte getREDIR_PERM()
Page permanently redirects to other page.
-
getNOTMODIFIED
final Byte getNOTMODIFIED()
Fetching successful - page is not modified.
-
-
-
-