Package hudson.security
Enum SecurityMode
- All Implemented Interfaces:
Serializable
,Comparable<SecurityMode>
What security enforcement does Hudson do?
- Author:
- Kohsuke Kawaguchi
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic SecurityMode
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.
-
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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-