|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<SecurityProblem>
com.teamdev.jxbrowser.security.SecurityProblem
public enum SecurityProblem
Provides information about a security problem.
| Enum Constant Summary | |
|---|---|
AUTHENTICATION_REQUIRED
Server requests client authentication. |
|
CONFIRMATION_REQUIRED
User confirmation is required for redirection. |
|
INVALID_CERTIFICATE_DATE
Invalid date on the certificate |
|
INVALID_CERTIFICATE_NAME
Invalid name on the certificate. |
|
MOVING_FROM_HTTP_TO_HTTPS
Request is redirected from a non-SSL to an SSL location. |
|
MOVING_FROM_HTTPS_TO_HTTP
Request is redirected from an SSL to a non-SSL location. |
|
NOT_TRUSTED_CERTIFICATE
Invalid Certification Authority. |
|
| Method Summary | |
|---|---|
java.lang.String |
getDefaultDescription()
Provide a default human-readable description of the security problem. |
static SecurityProblem |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SecurityProblem[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, 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 SecurityProblem NOT_TRUSTED_CERTIFICATE
public static final SecurityProblem INVALID_CERTIFICATE_NAME
public static final SecurityProblem INVALID_CERTIFICATE_DATE
public static final SecurityProblem MOVING_FROM_HTTP_TO_HTTPS
public static final SecurityProblem MOVING_FROM_HTTPS_TO_HTTP
public static final SecurityProblem CONFIRMATION_REQUIRED
public static final SecurityProblem AUTHENTICATION_REQUIRED
| Method Detail |
|---|
public static SecurityProblem[] values()
for (SecurityProblem c : SecurityProblem.values()) System.out.println(c);
public static SecurityProblem 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 name
java.lang.NullPointerException - if the argument is nullpublic java.lang.String getDefaultDescription()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||