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

com.hubspot.chrome.devtools.client.core.runtime.ExecutionContextId Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;

/**
 * Id of an execution context.
 */
public class ExecutionContextId {
  private Integer value;

  @JsonCreator
  public ExecutionContextId(Integer value) {
    this.value = value;
  }

  @JsonValue
  public Integer getValue() {
    return value;
  }

  @Override
  public String toString() {
    return getValue().toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy