Enum TestContainerPolicy

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<TestContainerPolicy>

    public enum TestContainerPolicy
    extends java.lang.Enum<TestContainerPolicy>
    Jersey test container implementation selection policy.
    Since:
    25.02.2025
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      DEFAULT
      Use grizzly, if available in classpath, otherwise use in memory container.
      GRIZZLY
      Use org.glassfish.jersey.test.grizzly.GrizzlyTestContainerFactory.
      IN_MEMORY
      Use InMemoryTestContainerFactory, even if grizzly is available in classpath.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static TestContainerPolicy valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static TestContainerPolicy[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • DEFAULT

        public static final TestContainerPolicy DEFAULT
        Use grizzly, if available in classpath, otherwise use in memory container. Also, factory could be specified in TestProperties.CONTAINER_FACTORY system property (see JerseyTest.getDefaultTestContainerFactory())
      • IN_MEMORY

        public static final TestContainerPolicy IN_MEMORY
        Use InMemoryTestContainerFactory, even if grizzly is available in classpath. In-memory is a lightweight rest container, but it does not support all features. If not supported features requires - use grizzly.
      • GRIZZLY

        public static final TestContainerPolicy GRIZZLY
        Use org.glassfish.jersey.test.grizzly.GrizzlyTestContainerFactory. Fail with a descriptive message if factory is not found in classpath. Useful to prevent accident in-memory container usage.
    • Method Detail

      • values

        public static TestContainerPolicy[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TestContainerPolicy c : TestContainerPolicy.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TestContainerPolicy valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null