Package org.cef.network
Class CefRequest.CefUrlRequestFlags
- java.lang.Object
- 
- org.cef.network.CefRequest.CefUrlRequestFlags
 
- 
- Enclosing class:
- CefRequest
 
 public static final class CefRequest.CefUrlRequestFlags extends java.lang.Object
- 
- 
Field SummaryFields Modifier and Type Field Description static intUR_FLAG_ALLOW_CACHED_CREDENTIALSIf set user name, password, and cookies may be sent with the request, and cookies may be saved from the response.static intUR_FLAG_NO_DOWNLOAD_DATAIf set the CefURLRequestClient.onDownloadData method will not be called.static intUR_FLAG_NO_RETRY_ON_5XXIf set 5XX redirect errors will be propagated to the observer instead of automatically re-tried.static intUR_FLAG_NONEDefault behavior.static intUR_FLAG_REPORT_RAW_HEADERSIf set the headers sent and received for the request will be recorded.static intUR_FLAG_REPORT_UPLOAD_PROGRESSIf set upload progress events will be generated when a request has a body.static intUR_FLAG_SKIP_CACHEIf set the cache will be skipped when handling the request.
 - 
Constructor SummaryConstructors Constructor Description CefUrlRequestFlags()
 
- 
- 
- 
Field Detail- 
UR_FLAG_NONEpublic static final int UR_FLAG_NONE Default behavior.- See Also:
- Constant Field Values
 
 - 
UR_FLAG_SKIP_CACHEpublic static final int UR_FLAG_SKIP_CACHE If set the cache will be skipped when handling the request.- See Also:
- Constant Field Values
 
 - 
UR_FLAG_ALLOW_CACHED_CREDENTIALSpublic static final int UR_FLAG_ALLOW_CACHED_CREDENTIALS If set user name, password, and cookies may be sent with the request, and cookies may be saved from the response.- See Also:
- Constant Field Values
 
 - 
UR_FLAG_REPORT_UPLOAD_PROGRESSpublic static final int UR_FLAG_REPORT_UPLOAD_PROGRESS If set upload progress events will be generated when a request has a body.- See Also:
- Constant Field Values
 
 - 
UR_FLAG_REPORT_RAW_HEADERSpublic static final int UR_FLAG_REPORT_RAW_HEADERS If set the headers sent and received for the request will be recorded.- See Also:
- Constant Field Values
 
 - 
UR_FLAG_NO_DOWNLOAD_DATApublic static final int UR_FLAG_NO_DOWNLOAD_DATA If set the CefURLRequestClient.onDownloadData method will not be called.- See Also:
- Constant Field Values
 
 - 
UR_FLAG_NO_RETRY_ON_5XXpublic static final int UR_FLAG_NO_RETRY_ON_5XX If set 5XX redirect errors will be propagated to the observer instead of automatically re-tried. This currently only applies for requests originated in the browser process.- See Also:
- Constant Field Values
 
 
- 
 
-