Class Overview
These constants indicate the possible error code related to an operation.
Summary
Enum Values |
FirewallResponse.ErrorCode |
DATABASE_ERROR |
Indicates that the operation resulted in an error related to a database action. |
FirewallResponse.ErrorCode |
INPUT_CHAIN_NOT_SUPPORTED_ERROR |
Indicates that the operation resulted in an error related to the fact that INPUT chains
are not supported in this kind of operation. |
FirewallResponse.ErrorCode |
INVALID_PARAMETER_ERROR |
Indicates that the operation resulted in an error related to an invalid parameter used in
the rule. |
FirewallResponse.ErrorCode |
IPV6_NOT_SUPPORTED_ERROR |
Indicates that the operation resulted in an error related to the fact that the target
device does not support IPv6 for the type of rule intended. |
FirewallResponse.ErrorCode |
NOT_AUTHORIZED_ERROR |
Indicates that the operation resulted in an error related to the fact that the
administrator applying the rules doesn't have authorization to perform the desired
action. |
FirewallResponse.ErrorCode |
NO_ERROR |
Indicates that the operation was completed successfully, without any errors. |
FirewallResponse.ErrorCode |
OPERATION_NOT_PERMITTED_ERROR |
Indicates that the operation resulted in an error related to a wrong usage of the related
method. |
FirewallResponse.ErrorCode |
UNEXPECTED_ERROR |
Indicates that the operation resulted in an error related to an unexpected behavior of
the APIs. |
[Expand]
Inherited Methods |
From class
java.lang.Enum
final
Object
|
clone()
|
final
int
|
compareTo(E arg0)
|
int
|
compareTo(Object arg0)
|
final
boolean
|
equals(Object arg0)
|
final
void
|
finalize()
|
final
Class<E>
|
getDeclaringClass()
|
final
int
|
hashCode()
|
final
String
|
name()
|
final
int
|
ordinal()
|
String
|
toString()
|
static
<T extends Enum<T>>
T
|
valueOf(Class<T> arg0, String arg1)
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
java.lang.Comparable
abstract
int
|
compareTo(T arg0)
|
|
Enum Values
Since: API level
Indicates that the operation resulted in an error related to a database action. This
error can occur due to an error on an add, remove or update operation in the database.
For more information check the message of the same FirewallResponse
object by
using the getMessage()
method.
Since: API level
Indicates that the operation resulted in an error related to the fact that INPUT chains
are not supported in this kind of operation. This error occur when a FirewallRule
for
INPUT direction is created for a specific application.For more information check
the message of the same FirewallResponse
object by using the
getMessage()
method.
Since: API level
Indicates that the operation resulted in an error related to an invalid parameter used in
the rule. For more information check the message of the same FirewallResponse
object by using the getMessage()
method.
Since: API level
Indicates that the operation resulted in an error related to the fact that the target
device does not support IPv6 for the type of rule intended. For more information check
the message of the same FirewallResponse
object by using the
getMessage()
method.
Since: API level
Indicates that the operation resulted in an error related to the fact that the
administrator applying the rules doesn't have authorization to perform the desired
action. For more information check the message of the same FirewallResponse
object by using the getMessage()
method.
Since: API level
Indicates that the operation was completed successfully, without any errors.
Since: API level
Indicates that the operation resulted in an error related to a wrong usage of the related
method. For more information check the message of the same FirewallResponse
object by using the getMessage()
method.
Since: API level
Indicates that the operation resulted in an error related to an unexpected behavior of
the APIs. For more information check the message of the same FirewallResponse
object by using the getMessage()
method.
Public Methods