All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.chrome.devtools.client.core.page.FrameClearedScheduledNavigationEvent Maven / Gradle / Ivy

package com.hubspot.chrome.devtools.client.core.page;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.hubspot.chrome.devtools.client.core.Event;

/**
 * Fired when frame no longer has a scheduled navigation.
 */
public final class FrameClearedScheduledNavigationEvent extends Event {
  private FrameId frameId;

  @JsonCreator
  public FrameClearedScheduledNavigationEvent(@JsonProperty("frameId") FrameId frameId) {
    this.frameId = frameId;
  }

  public FrameId getFrameId() {
    return frameId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy