Fixing checkstyle and javadoc errors
[dcaegen2/analytics/tca.git] / dcae-analytics-model / src / main / java / org / openecomp / dcae / apod / analytics / model / domain / cef / PerformanceCounter.java
index e8dbee9..46b4c4f 100644 (file)
@@ -33,13 +33,15 @@ import lombok.EqualsAndHashCode;
 public class PerformanceCounter extends BaseCEFModel {
 
     private static final long serialVersionUID = 1L;
+
     /**
-     * Performance Counter Criticality
+     * Performance Counter Criticality.
      *
      * @param criticality New value for Criticality
      * @return Performance Counter Criticality
      */
     private Criticality criticality;
+
     /**
      * Performance Counter Name
      *
@@ -47,19 +49,20 @@ public class PerformanceCounter extends BaseCEFModel {
      * @return Performance Counter Name
      */
     private String name;
-    /**
-     * Performance Counter Threshold Crossed
+
+   /**
+     * Performance Counter for Threshold Crossed.
      *
      * @param thresholdCrossed New value for Performance Counter Threshold Crossed
      * @return Performance Counter Threshold Crossed
      */
     private String thresholdCrossed;
+
     /**
-     * Performance Counter Value
+     * Performance Counter Value.
      *
      * @param value New Performance Counter Value
      * @return Performance Counter Value
      */
     private String value;
-
 }