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

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

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

import com.fasterxml.jackson.annotation.JsonValue;

/**
 * A description of mixed content (HTTP resources on HTTPS pages), as defined by
 * https://www.w3.org/TR/mixed-content/#categories
 */
public enum MixedContentType {
  BLOCKABLE("blockable"),

  OPTIONALLY_BLOCKABLE("optionally-blockable"),

  NONE("none");

  private final String value;

  MixedContentType(String value) {
    this.value= value;
  }

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

  @Override
  public String toString() {
    return value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy