|
|
|
|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Action.Security>
org.torweg.pulse.annotations.Action.Security
public static enum Action.Security
indicates which level of security shall be applied to the generated action.
| Enum Constant Summary | |
|---|---|
ALWAYS
always use a secure connection, if TLS is available. |
|
KEEP
keep the current security level, i.e. stay on https, if the preceding command was secure, stay on http if the preceding command was not secure. |
|
NEVER
never use a secure connection. |
|
| Method Summary | |
|---|---|
boolean |
overrides(Action.Security s)
returns whether the current level of Security overrides the
given Security. |
static Action.Security |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Action.Security[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Action.Security NEVER
public static final Action.Security KEEP
public static final Action.Security ALWAYS
| Method Detail |
|---|
public static final Action.Security[] values()
for(Action.Security c : Action.Security.values())
System.out.println(c);
public static Action.Security valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namepublic final boolean overrides(Action.Security s)
Security overrides the
given Security.
s - the security to check against
Security overrides the
given Security
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||