|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SecurityMode>
hudson.security.SecurityMode
public enum SecurityMode
What security enforcement does Hudson do?
Enum Constant Summary | |
---|---|
LEGACY
Legacy "secure mode." |
|
SECURED
Security-enabled mode implemented through Acegi. |
|
UNSECURED
None. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |