com.eviware.soapui.security.result
Enum SecurityResult.ResultStatus
java.lang.Object
java.lang.Enum<SecurityResult.ResultStatus>
com.eviware.soapui.security.result.SecurityResult.ResultStatus
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<SecurityResult.ResultStatus>
- Enclosing interface:
- SecurityResult
public static enum SecurityResult.ResultStatus
- extends java.lang.Enum<SecurityResult.ResultStatus>
INITIALIZED - just started, for distinguishing if icon should be added in
the security log UNKNOWN - when no assertions are added OK - finished with
no errors/warnings FAILED CANCELED note:
MISSING_ASSERTIONS,MISSING_PARAMETERS - are used only for indicating
progress execution for security log entry icons
| 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 |
INITIALIZED
public static final SecurityResult.ResultStatus INITIALIZED
UNKNOWN
public static final SecurityResult.ResultStatus UNKNOWN
OK
public static final SecurityResult.ResultStatus OK
FAILED
public static final SecurityResult.ResultStatus FAILED
CANCELED
public static final SecurityResult.ResultStatus CANCELED
MISSING_ASSERTIONS
public static final SecurityResult.ResultStatus MISSING_ASSERTIONS
MISSING_PARAMETERS
public static final SecurityResult.ResultStatus MISSING_PARAMETERS
SKIPPED
public static final SecurityResult.ResultStatus SKIPPED
values
public static SecurityResult.ResultStatus[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (SecurityResult.ResultStatus c : SecurityResult.ResultStatus.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static SecurityResult.ResultStatus valueOf(java.lang.String name)
- 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:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
Copyright © 2005-2011 eviware.com. All Rights Reserved.