|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<BundleRefreshError>
org.nhindirect.config.model.BundleRefreshError
public enum BundleRefreshError
Enumeration of status for refresh error for trust bundles.
| Enum Constant Summary | |
|---|---|
DOWNLOAD_TIMEOUT
The download from the URL timed out. |
|
INVALID_BUNDLE_FORMAT
The bundle is either corrupt or in an unrecognized format. |
|
INVALID_SIGNING_CERT
The signing certificate specified is not a valid certificate. |
|
NOT_FOUND
The bundle was not found at the URL specified. |
|
SUCCESS
Successful update. |
|
UNMATCHED_SIGNATURE
The signature on the signed bundle did not validate successfully against the signing certificate. |
|
| Method Summary | |
|---|---|
static BundleRefreshError |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static BundleRefreshError[] |
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 BundleRefreshError SUCCESS
public static final BundleRefreshError NOT_FOUND
public static final BundleRefreshError DOWNLOAD_TIMEOUT
public static final BundleRefreshError INVALID_BUNDLE_FORMAT
public static final BundleRefreshError INVALID_SIGNING_CERT
public static final BundleRefreshError UNMATCHED_SIGNATURE
| Method Detail |
|---|
public static BundleRefreshError[] values()
for (BundleRefreshError c : BundleRefreshError.values()) System.out.println(c);
public static BundleRefreshError 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 | |||||||||