Package hudson.security
Enum Class SecurityMode
- All Implemented Interfaces:
Serializable
,Comparable<SecurityMode>
,Constable
What security enforcement does Hudson do?
- Author:
- Kohsuke Kawaguchi
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic SecurityMode
Returns the enum constant of this class with the specified name.static SecurityMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNSECURED
None. Anyone can make any changes. -
LEGACY
Legacy "secure mode."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.
-
SECURED
Security-enabled mode implemented through Spring Security.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-