public enum SecurityMode extends Enum<SecurityMode>
Enum Constant and Description |
---|
LEGACY
Legacy "secure mode."
|
SECURED
Security-enabled mode implemented through Spring Security.
|
UNSECURED
None.
|
Modifier and Type | Method and Description |
---|---|
static SecurityMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityMode UNSECURED
public static final SecurityMode LEGACY
In this model, an user is either admin or not. An admin user can do anything, and non-admin user can only browse. Authentication is performed by the container.
This is the only secured mode of Hudson up to 1.160. This is maintained only for backward compatibility.
public static final SecurityMode SECURED
public static SecurityMode[] values()
for (SecurityMode c : SecurityMode.values()) System.out.println(c);
public static SecurityMode 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 © 2004–2022. All rights reserved.