TCAGen2 java upgrade
[dcaegen2/analytics/tca-gen2.git] / eelf-logger / eelf-logger-api / src / main / java / org / onap / dcae / utils / eelf / logger / api / info / ResponseLogInfo.java
index 1929e7f..ad09f3d 100644 (file)
@@ -30,43 +30,32 @@ public interface ResponseLogInfo extends LogInfo {
      * Required field contains application-specific response codes. While error codes are
      * application-specific, they
      * should conform categories mentioned in table below in order to provide consistency
-     * <p>
-     * <table cellspacing=0 border=1>
-     * <tr>
-     * <th style=min-width:50px><b>Error type</b></th>
-     * <th style=min-width:50px><b>Notes</b></th>
-     * </tr>
-     * <tr>
-     * <td style=min-width:50px>0</td>
-     * <td style=min-width:50px>Success</td>
-     * </tr>
-     * <tr>
-     * <td style=min-width:50px>100</td>
-     * <td style=min-width:50px>Permission errors</td>
-     * </tr>
-     * <tr>
-     * <td style=min-width:50px>200</td>
-     * <td style=min-width:50px>Availability errors/Timeouts</td>
-     * </tr>
-     * <tr>
-     * <td style=min-width:50px>300</td>
-     * <td style=min-width:50px>Data errors</td>
-     * </tr>
-     * <tr>
-     * <td style=min-width:50px>400</td>
-     * <td style=min-width:50px>Schema errors</td>
-     * </tr>
-     * <tr>
-     * <td style=min-width:50px>500</td>
-     * <td style=min-width:50px>Business process errors</td>
-     * </tr>
-     * <tr>
-     * <td style=min-width:50px>900</td>
-     * <td style=min-width:50px>Unknown Errors</td>
-     * </tr>
-     * </table>
+     * <div style="display: flex">
+     *     <div style="border-left: 2px solid black; border-right: 2px solid black;">
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;">Error Type</p>
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;">0</p>
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;">100</p>
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;">200</p>
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;">300</p>
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;">400</p>
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;">500</p>
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;border-bottom: 2px solid black;">
+     *             900</p>
+     *     </div>
+     *     <div style="border-right: 2px solid black;">
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;">Notes</p>
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;">Success</p>
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;">Permission errors</p>
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;">Availability errors/Timeouts</p>
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;">Data errors</p>
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;">Schema errors</p>
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;">Business process errors</p>
+     *         <p style="margin: 0;padding: 0 1px 0;border-top: 2px solid black;border-bottom: 2px solid black;">
+     *             Unknown Errors</p>
+     *     </div>
+     * </div>
      *
-     * @return application-specific error code
+     * @return error Code
      */
     Integer getResponseCode();