Class UserModuleError
java.lang.Object
es.kukenan.smartfi.microservice.clients.repository.entity.UserModuleError
DAO for rooted control table in Database.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate StringError code.private StringCompany identifier.private StringContext in which the error has been thrown.private ZonedDateTimeError hit date.private StringError description.static final intMax allowed length for description field.private IntegerModule error id.private StringError level.private StringError origin (module/microservice that has failed).private StringRelated event id (if any).private StringUser identifier. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
DESCRIPTION_MAX_LENGTH
public static final int DESCRIPTION_MAX_LENGTHMax allowed length for description field.- See Also:
-
id
Module error id. -
userId
User identifier. -
companyId
Company identifier. -
context
Context in which the error has been thrown. For example, the event: UserCreateEvent. -
origin
Error origin (module/microservice that has failed). -
level
Error level.- CRITICAL: affects user behaviour in skyline (user may be disabled).
- MAJOR: affects user behaviour in a single skyline module (user may not be disabled, but the affected module may not work correctly).
- MINOR: partially affects user behaviour in a single skyline module (some operations in the affected module may not work well).
- TRIVIAL: does not directly affect user behaviour in skyline, but minor defects may appear: invalid data in UI/notifications...
- UNKNOWN: error context/origin is not registered and user behaviour in skyline is unknown.
-
date
Error hit date. -
code
Error code. -
description
Error description.
-
-
Constructor Details
-
UserModuleError
public UserModuleError()
-