public static enum InjectionUnsafe.UnsafeReason extends Enum<InjectionUnsafe.UnsafeReason>
| Enum Constant and Description |
|---|
ForwardedToUnsafeService
The value is sent unquoted to an external service which has not been verified for injection safety.
|
UnclearUsage
The value is used in a complex manner or in so many places that there serious doubts on the safety.
|
| Modifier and Type | Method and Description |
|---|---|
static InjectionUnsafe.UnsafeReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InjectionUnsafe.UnsafeReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InjectionUnsafe.UnsafeReason UnclearUsage
public static final InjectionUnsafe.UnsafeReason ForwardedToUnsafeService
public static InjectionUnsafe.UnsafeReason[] values()
for (InjectionUnsafe.UnsafeReason c : InjectionUnsafe.UnsafeReason.values()) System.out.println(c);
public static InjectionUnsafe.UnsafeReason valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018 trivago. All rights reserved.