public enum RequestStatus extends java.lang.Enum<RequestStatus>
The RequestStatus
provides details on the status of a caching request.
For example, a read request that completes successfully will return RequestStatus.ObjectRetrieved.
Enum Constant and Description |
---|
AuthNotNeeded
The client requested authorization for a request which does not require authorization.
|
CacheCleared
The ScaleOut cache was cleared of all objects.
|
EventPosted
The event was successfully posted.
|
GeoServerLocalNameNotSet
Note, requires GeoServer Pro.
|
GeoServerNoActiveRemoteStore
Note, requires GeoServer Pro.
|
GeoServerRemoteAccessError
Note, requires GeoServer Pro.
|
GeoServerStaleRead
Note, requires GeoServer Pro.
|
GeoServerSuccessfulObjectTakeover
Note, requires GeoServer Pro.
|
InvokeComplete
The invoke completed.
|
LockLostError
An exclusive lock timed out and then locked by another client.
|
NoMemory
The ScaleOut store ran out of memory.
|
NotAuthorized
The client is not authorized to perform an operation.
|
NotImplemented
The request is not implemented.
|
NotLicensed
The client is not licensed to perform an operation.
|
NotReady
The ScaleOut store is not ready to perform the operation.
|
ObjectAdded
An object was added to the ScaleOut cache.
|
ObjectAddedAndLocked
An object was added with an exclusive lock to the ScaleOut cache.
|
ObjectAlreadyLocked
An object was already locked by another client.
|
ObjectError
A general error occurred within the request.
|
ObjectExists
The object already exists in the cache.
|
ObjectLocked
An object in the ScaleOut cache was locked for exclusive access.
|
ObjectNotFound
The ScaleOut cache did not contain the request object.
|
ObjectRemoved
A cached object was removed from a ScaleOut cache.
|
ObjectRetrieved
An object was retrieved from the ScaleOut cache.
|
ObjectRetrievedAndLocked
An object was retrieved from the ScaleOut cache and locked for exclusive access.
|
ObjectUnlocked
An object in the ScaleOut cache was unlocked.
|
ObjectUpdated
An object was updated in the ScaleOut cache.
|
ObjectUpdatedAndLockRetained
An object was updated and an exclusive lock was retained by the requester.
|
ObjectUpdatedAndUnlocked
An object was updated and an exclusive lock was released.
|
ObjectVersionMismatch
The version supplied didn't match the version in the store.
|
OperationFailed
The caching operation failed.
|
ProxyFound
Note, requires GeoServer Pro.
|
ReadPending
The read request is pending.
|
Success
The cache operation completed successfully.
|
Timeout
The request timed out.
|
UnhandledExceptionInCallback
There was an unhandled exception in the defined callback.
|
WrongClient
The ScaleOut cache rejected the request because the client was invalid.
|
WrongEpoch
The event channel was established against an older version of the server.
|
Modifier and Type | Method and Description |
---|---|
static RequestStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestStatus Success
public static final RequestStatus ObjectRemoved
public static final RequestStatus ObjectAdded
public static final RequestStatus ObjectAddedAndLocked
public static final RequestStatus ObjectUpdated
public static final RequestStatus ObjectUpdatedAndLockRetained
public static final RequestStatus ObjectUpdatedAndUnlocked
public static final RequestStatus CacheCleared
public static final RequestStatus ObjectRetrieved
public static final RequestStatus ObjectLocked
public static final RequestStatus ObjectRetrievedAndLocked
public static final RequestStatus ObjectAlreadyLocked
public static final RequestStatus LockLostError
public static final RequestStatus ObjectUnlocked
public static final RequestStatus GeoServerSuccessfulObjectTakeover
public static final RequestStatus GeoServerStaleRead
public static final RequestStatus ObjectError
public static final RequestStatus NoMemory
public static final RequestStatus ObjectNotFound
public static final RequestStatus WrongClient
public static final RequestStatus NotLicensed
public static final RequestStatus NotReady
public static final RequestStatus Timeout
public static final RequestStatus ReadPending
public static final RequestStatus ObjectVersionMismatch
public static final RequestStatus ObjectExists
public static final RequestStatus AuthNotNeeded
public static final RequestStatus NotAuthorized
public static final RequestStatus GeoServerRemoteAccessError
public static final RequestStatus GeoServerNoActiveRemoteStore
public static final RequestStatus GeoServerLocalNameNotSet
public static final RequestStatus ProxyFound
public static final RequestStatus EventPosted
public static final RequestStatus InvokeComplete
public static final RequestStatus UnhandledExceptionInCallback
public static final RequestStatus NotImplemented
public static final RequestStatus WrongEpoch
public static final RequestStatus OperationFailed
public static RequestStatus[] values()
for (RequestStatus c : RequestStatus.values()) System.out.println(c);
public static RequestStatus 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 namejava.lang.NullPointerException
- if the argument is null