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

org.robolectric.annotation.ConscryptMode Maven / Gradle / Ivy

There is a newer version: 4.13
Show newest version
package org.robolectric.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/** Annotation for Conscrypt modes in Robolectric. */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PACKAGE, ElementType.TYPE, ElementType.METHOD})
public @interface ConscryptMode {

  /**
   * Specifies the different supported Conscrypt modes. If ConscryptMode is ON, it will install
   * Conscrypt. If it is OFF, it won't do that but either way BouncyCastle is still installed.
   */
  enum Mode {
    ON,

    OFF,
  }

  Mode value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy