|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RpcReplyError.ErrorTag>
com.vhosting.netconf.frame.RpcReplyError.ErrorTag
public static enum RpcReplyError.ErrorTag
This enum represents the cataloging of all possible errors that can be found in an RPC response.
Enum Constant Summary | |
---|---|
access_denied
Access to the requested RPC, protocol operation, or data model is denied because authorization failed. |
|
bad_attribute
An attribute value is not correct; e.g., wrong type, out of range, pattern mismatch. |
|
bad_element
An element value is not correct; e.g., wrong type, out of range, pattern mismatch. |
|
data_exists
Request could not be completed because the relevant data model content already exists. |
|
data_missing
Request could not be completed because the relevant data model content does not exist. |
|
in_use
The request requires a resource that already in use. |
|
invalid_value
The request specifies an unacceptable value for one or more parameters. |
|
lock_denied
Access to the requested lock is denied because the lock is currently held by another entity. |
|
missing_attribute
An expected attribute is missing. |
|
missing_element
An expected element is missing. |
|
operation_failed
Request could not be completed because the requested operation failed for some reason not covered by any other error condition. |
|
operation_not_supported
Request could not be completed because the requested operation is not supported by this implementation. |
|
partial_operation
Some part of the requested operation failed or was not attempted for some reason. |
|
resource_denied
Request could not be completed because of insufficient resources. |
|
rollback_failed
Request to rollback some configuration change (via rollback-on-error or discard-changes operations) was not completed for some reason. |
|
too_big
The request or response (that would be generated) is too large for the implementation to handle. |
|
unknown_attribute
An unexpected attribute is present. |
|
unknown_element
An unexpected element is present. |
|
unknown_namespace
An unexpected namespace is present. |
Method Summary | |
---|---|
static RpcReplyError.ErrorTag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static RpcReplyError.ErrorTag[] |
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 RpcReplyError.ErrorTag in_use
public static final RpcReplyError.ErrorTag invalid_value
public static final RpcReplyError.ErrorTag too_big
public static final RpcReplyError.ErrorTag bad_attribute
public static final RpcReplyError.ErrorTag unknown_attribute
public static final RpcReplyError.ErrorTag missing_attribute
public static final RpcReplyError.ErrorTag missing_element
public static final RpcReplyError.ErrorTag bad_element
public static final RpcReplyError.ErrorTag unknown_element
public static final RpcReplyError.ErrorTag unknown_namespace
public static final RpcReplyError.ErrorTag access_denied
public static final RpcReplyError.ErrorTag lock_denied
public static final RpcReplyError.ErrorTag resource_denied
public static final RpcReplyError.ErrorTag rollback_failed
public static final RpcReplyError.ErrorTag data_exists
public static final RpcReplyError.ErrorTag data_missing
public static final RpcReplyError.ErrorTag operation_not_supported
public static final RpcReplyError.ErrorTag operation_failed
public static final RpcReplyError.ErrorTag partial_operation
Method Detail |
---|
public static RpcReplyError.ErrorTag[] values()
for (RpcReplyError.ErrorTag c : RpcReplyError.ErrorTag.values()) System.out.println(c);
public static RpcReplyError.ErrorTag 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 null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |