Enum TestContainerPolicy
- java.lang.Object
-
- java.lang.Enum<TestContainerPolicy>
-
- ru.vyarus.dropwizard.guice.test.rest.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 DEFAULTUse grizzly, if available in classpath, otherwise use in memory container.GRIZZLYUseorg.glassfish.jersey.test.grizzly.GrizzlyTestContainerFactory.IN_MEMORYUseInMemoryTestContainerFactory, even if grizzly is available in classpath.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TestContainerPolicyvalueOf(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.
-
-
-
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 inTestProperties.CONTAINER_FACTORYsystem property (seeJerseyTest.getDefaultTestContainerFactory())
-
IN_MEMORY
public static final TestContainerPolicy IN_MEMORY
UseInMemoryTestContainerFactory, 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
Useorg.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 namejava.lang.NullPointerException- if the argument is null
-
-