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

com.hubspot.chrome.devtools.client.core.domstorage.DomStorageItemAddedEvent Maven / Gradle / Ivy

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

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

public final class DomStorageItemAddedEvent extends Event {
  private StorageId storageId;

  private String key;

  private String newValue;

  @JsonCreator
  public DomStorageItemAddedEvent(@JsonProperty("storageId") StorageId storageId,
      @JsonProperty("key") String key, @JsonProperty("newValue") String newValue) {
    this.storageId = storageId;
    this.key = key;
    this.newValue = newValue;
  }

  public StorageId getStorageId() {
    return storageId;
  }

  public String getKey() {
    return key;
  }

  public String getNewValue() {
    return newValue;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy