Magentix2
2.1.1
|
Public Member Functions | |
TraceError (String name, String description) | |
String | getName () |
String | getDescription () |
Static Public Attributes | |
static final int | TRACE_ERROR = 0 |
static final int | ENTITY_NOT_FOUND = 1 |
static final int | PROVIDER_NOT_FOUND = 2 |
static final int | SERVICE_NOT_FOUND = 3 |
static final int | SUBSCRIPTION_NOT_FOUND = 4 |
static final int | ENTITY_DUPLICATE = 5 |
static final int | SERVICE_DUPLICATE = 6 |
static final int | SUBSCRIPTION_DUPLICATE = 7 |
static final int | BAD_ENTITY = 8 |
static final int | BAD_SERVICE = 9 |
static final int | PUBLISH_ERROR = 10 |
static final int | UNPUBLISH_ERROR = 11 |
static final int | SUBSCRIPTION_ERROR = 12 |
static final int | UNSUBSCRIPTION_ERROR = 13 |
static final int | AUTHORIZATION_ERROR = 14 |
static final int | SERVICE_NOT_ALLOWED = 15 |
static final int | MAX_TRACE_ERROR = 16 |
static final TraceError[] | TraceErrors |
Specification of error messages related to the trace support
Definition at line 9 of file TraceError.java.
es.upv.dsic.gti_ia.trace.TraceError.TraceError | ( | String | name, |
String | description | ||
) |
Constructor which creates a trace error message with the specified name and description
name | Identifier name of the error message |
description | Human readable description of the error |
Definition at line 138 of file TraceError.java.
{ this.name = name; this.description = description; }
Returns the description of the error message
Definition at line 157 of file TraceError.java.
{
return this.description;
}
String es.upv.dsic.gti_ia.trace.TraceError.getName | ( | ) |
Returns the identifier name of the error message
Definition at line 148 of file TraceError.java.
{
return this.name;
}
final int es.upv.dsic.gti_ia.trace.TraceError.AUTHORIZATION_ERROR = 14 [static] |
Unauthorized to do so
Definition at line 74 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.BAD_ENTITY = 8 [static] |
Tracing entity not correct
Definition at line 50 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.BAD_SERVICE = 9 [static] |
Tracing service not correct
Definition at line 54 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.ENTITY_DUPLICATE = 5 [static] |
Tracing entity already present in the system
Definition at line 38 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.ENTITY_NOT_FOUND = 1 [static] |
Tracing entity not present in the system
Definition at line 22 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.MAX_TRACE_ERROR = 16 [static] |
Number of available trace error messages
Definition at line 85 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.PROVIDER_NOT_FOUND = 2 [static] |
Provider is not offering the tracing service
Definition at line 26 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.PUBLISH_ERROR = 10 [static] |
Impossible to publish the tracing service
Definition at line 58 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.SERVICE_DUPLICATE = 6 [static] |
Tracing service already offered by the tracing entity
Definition at line 42 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.SERVICE_NOT_ALLOWED = 15 [static] |
The trace mask does not allow that service to publish or request that service.
Definition at line 80 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.SERVICE_NOT_FOUND = 3 [static] |
Tracing service not offered by any entity in the system
Definition at line 30 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.SUBSCRIPTION_DUPLICATE = 7 [static] |
Subscription already exists
Definition at line 46 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.SUBSCRIPTION_ERROR = 12 [static] |
Impossible to subscribe to the tracing service
Definition at line 66 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.SUBSCRIPTION_NOT_FOUND = 4 [static] |
Subscription to the tracing service not found
Definition at line 34 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.TRACE_ERROR = 0 [static] |
Undefined trace error
Definition at line 18 of file TraceError.java.
final TraceError [] es.upv.dsic.gti_ia.trace.TraceError.TraceErrors [static] |
new TraceError[] { new TraceError("TRACE_ERROR", "Undefined trace error"), new TraceError("ENTITY_NOT_FOUND", "Tracing entity not present in the system"), new TraceError("PROVIDER_NOT_FOUND", "Provider is not offering the tracing service"), new TraceError("SERVICE_NOT_FOUND", "Tracing service not offered by any entity in the system"), new TraceError("SUBSCRIPTION_NOT_FOUND", "Subscription to the tracing service not found"), new TraceError("ENTITY_DUPLICATE", "Tracing entity already present in the system"), new TraceError("SERVICE_DUPLICATE", "Tracing service already offered by the tracing entity"), new TraceError("SUBSCRIPTION_DUPLICATE", "Subscription already exists"), new TraceError("BAD_ENTITY", "Tracing entity not correct"), new TraceError("BAD_SERVICE", "Tracing service not correct"), new TraceError("PUBLISH_ERROR", "Impossible to publish the tracing service"), new TraceError("UNPUBLISH_ERROR", "Impossible to unpublish the tracing service"), new TraceError("SUBSCRIPTION_ERROR", "Impossible to subscribe to the tracing service"), new TraceError("UNSUBSCRIPTION_ERROR", "Impossible to unsubscribe from tracing service"), new TraceError("AUTHORIZATION_ERROR", "Unauthorized to do so"), new TraceError("SERVICE_NOT_ALLOWED", "Tracing service not allowed") }
Array of available trace error messages
Definition at line 90 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.UNPUBLISH_ERROR = 11 [static] |
Impossible to unpublish the tracing service
Definition at line 62 of file TraceError.java.
final int es.upv.dsic.gti_ia.trace.TraceError.UNSUBSCRIPTION_ERROR = 13 [static] |
Impossible to unsubscribe from tracing service
Definition at line 70 of file TraceError.java.