diff options
author | Thomas Nelson <nelson24@att.com> | 2019-01-23 19:22:58 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-01-23 19:22:58 +0000 |
commit | 29056ff8d72d4f50073f6993ee6bd1b7ee7caf91 (patch) | |
tree | 356c6224ac2919ec81fcea5eacc9aeef54057950 /src/main | |
parent | 0874292bf8ff6d4c1cb2e90821683cee56ef2fa8 (diff) | |
parent | a8b908897eb60953c2298e94d61ad319269bec19 (diff) |
Merge "AppMessages.java - Sonar Fixes"
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/org/onap/music/eelf/logging/format/AppMessages.java | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/src/main/java/org/onap/music/eelf/logging/format/AppMessages.java b/src/main/java/org/onap/music/eelf/logging/format/AppMessages.java index bef61f25..c406c694 100644 --- a/src/main/java/org/onap/music/eelf/logging/format/AppMessages.java +++ b/src/main/java/org/onap/music/eelf/logging/format/AppMessages.java @@ -3,6 +3,7 @@ * org.onap.music * =================================================================== * Copyright (c) 2017 AT&T Intellectual Property + * Copyright (c) 2019 IBM Intellectual Property * =================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -143,22 +144,8 @@ public enum AppMessages { this.resolution = resolution; } - - - - AppMessages(ErrorTypes eType, ErrorSeverity alarmSeverity, - ErrorSeverity errorSeverity, String errorCode, String errorDescription, String details, - String resolution) { - - this.eType = eType; - this.alarmSeverity = alarmSeverity; - this.errorSeverity = errorSeverity; - this.errorCode = errorCode; - this.errorDescription = errorDescription; - this.details = details; - this.resolution = resolution; - } - public ErrorTypes getEType() { + + public ErrorTypes getEType() { return eType; } |