@UESComponent public interface UESApplicationLog
Modifier and Type | Method and Description |
---|---|
void |
log(UESMessageType msgLevel,
Deprecated.
Please use the method
UESApplicationLog.log(UESURI, UESApplicationLogEntry) instead. |
void |
log(UESURI mainEntity,
Writes explicit message into application log.
|
UESApplicationLog.log(UESURI, UESApplicationLogEntry)
instead.msgLevel
- Level of recorded message. This is mandatory parameter.msgCode
- Message's code. This code may be used for localization. This is mandatory parameter.defaultMsg
- Default message. This message is used if localization of message according to
msgCode is not available. This is mandatory parameter.mainEntity
- Main entity for the application log message. When main entity is not specified,
application log uses the last authorization for obtaining main entity.apCode
- Access point code. When this parameter is not specified, application log uses access point used for last authorization.ucType
- Use case type. When this parameter is not specified, UseCaseType.VISUAL_UC
will be used as default.executiveRole
- Executive role. When this parameter is not specified, application log uses executive role from last authorization.accessRole
- Access role. When this parameter is not specified, application log uses access role from last authorization.parameters
- Parameters for the application log message.UESApplicationLogRTException
- If some mandatory parameter has null value.mainEntity
- UESURI of main entity. Optional parameter. If it is not specified
the entity will be obtained from the last authorization.logEntry
- DTO which contains application log entry values. Mandatory parameter.UESApplicationLogRTException
- If message cannot be written into application log.