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

com.hubspot.chrome.devtools.client.core.security.CertificateId Maven / Gradle / Ivy

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

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

/**
 * An internal certificate ID value.
 */
public class CertificateId {
  private Integer value;

  @JsonCreator
  public CertificateId(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