Class Network.requestIntercepted

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<BaseType<?>>
    Enclosing class:
    Network

    public static class Network.requestIntercepted
    extends BrowserEvent<Network.requestIntercepted>
    implements java.io.Serializable
    This Nested Java Class is declared as an Event-Type by the CDP API Specifications. This class largely functions as a data container or "data record", and encapsulates the datum values that Google Chrome is incorporating into the event that it is firing.

    📌 All browser domain event classes will have a class name that begins with a lower case letter.

    👉 Note that this particular event can be fired by the Network domain, located in the BrowserAPI. A browser 'domain' is quite similar to a Java Package. It incorporates a suite of features, types and functions under one umbrella.
    Details of an intercepted HTTP request, which must be either allowed, blocked, modified or mocked. Deprecated, use Fetch.requestPaused instead.
    EXPERIMENTALDEPRECATED
    See Also:
    Serialized Form


    • Field Detail

      • serialVersionUID

        🡇     🗕  🗗  🗖
        protected static final long serialVersionUID
        This fulfils the SerialVersion UID requirement for all classes that implement Java's interface java.io.Serializable. Using the Serializable Implementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.
        See Also:
        Constant Field Values
      • interceptionId

        🡅  🡇     🗕  🗗  🗖
        public final java.lang.String interceptionId
        Each request the page makes will have a unique id, however if any redirects are encountered while processing that fetch, they will be reported with the same id as the original fetch. Likewise if HTTP authentication is needed then the same fetch id will be used.
      • resourceType

        🡅  🡇     🗕  🗗  🗖
        public final java.lang.String resourceType
        How the requested resource will be used.

        This particular field will have its values resricted to the contents of a CDP defined Enumerated String List. That list may be viewed here:

        📎 Network.ResourceType


        Programmatically Accessing the Enum:
        // Retrieve the list of enumerated strings for this field
        ReadOnlyList<String> enumerationStrs = Network.ResourceType.enumStrList("resourceType");
        
        // Print the list of strings to the terminal
        for (final String s : enumerationStrs) System.out.println('\"' + s + "\", ");
        
        See Also:
        BaseType.enumStrList(String)
      • isDownload

        🡅  🡇     🗕  🗗  🗖
        public final java.lang.Boolean isDownload
        Set if the request is a navigation that will result in a download. Only present after response is received from the server (i.e. HeadersReceived stage).
        OPTIONAL
      • responseErrorReason

        🡅  🡇     🗕  🗗  🗖
        public final java.lang.String responseErrorReason
        Response error if intercepted at response stage or if redirect occurred while intercepting request.
        OPTIONAL

        This particular field will have its values resricted to the contents of a CDP defined Enumerated String List. That list may be viewed here:

        📎 Network.ErrorReason


        Programmatically Accessing the Enum:
        // Retrieve the list of enumerated strings for this field
        ReadOnlyList<String> enumerationStrs = Network.ErrorReason.enumStrList("responseErrorReason");
        
        // Print the list of strings to the terminal
        for (final String s : enumerationStrs) System.out.println('\"' + s + "\", ");
        
        See Also:
        BaseType.enumStrList(String)
      • responseStatusCode

        🡅  🡇     🗕  🗗  🗖
        public final java.lang.Integer responseStatusCode
        Response code if intercepted at response stage or if redirect occurred while intercepting request or auth retry occurred.
        OPTIONAL
      • requestId

        🡅  🡇     🗕  🗗  🗖
        public final java.lang.String requestId
        If the intercepted request had a corresponding requestWillBeSent event fired for it, then this requestId will be the same as the requestId present in the requestWillBeSent event.
        OPTIONAL
    • Constructor Detail

      • requestIntercepted

        🡅  🡇     🗕  🗗  🗖
        public requestIntercepted​(ReadOnlyList<java.lang.Boolean> isPresent,
                                  java.lang.String interceptionId,
                                  Network.Request request,
                                  java.lang.String frameId,
                                  java.lang.String resourceType,
                                  boolean isNavigationRequest,
                                  java.lang.Boolean isDownload,
                                  java.lang.String redirectUrl,
                                  Network.AuthChallenge authChallenge,
                                  java.lang.String responseErrorReason,
                                  java.lang.Integer responseStatusCode,
                                  JsonValue responseHeaders,
                                  java.lang.String requestId)
        Constructor. Please review this class' fields for documentation.