Fixed sonar issues - AuditMessages 21/26021/8
authormojahidi <mojahidul.islam@amdocs.com>
Mon, 11 Dec 2017 10:16:47 +0000 (15:46 +0530)
committerVitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com>
Mon, 11 Dec 2017 17:28:06 +0000 (17:28 +0000)
Added private constructor to hide public one

Change-Id: Icddef8c59eb1f4cc77ed6646cfb7b362d4921da1
Issue-ID: SDC-343
Signed-off-by: mojahidi <mojahidul.islam@amdocs.com>
openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/messages/AuditMessages.java

index d562ae5..53df3e6 100644 (file)
@@ -1,8 +1,21 @@
+/*
+ * Copyright © 2016-2017 European Support Limited
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package org.openecomp.sdc.logging.messages;
 
-/**
- * Created by ayalaben on 4/20/2017.
- */
 public class AuditMessages {
 
   public static final String AUDIT_MSG = " --Audit-- ";
@@ -38,5 +51,7 @@ public class AuditMessages {
   public static final String ENRICHMENT_ERROR = "Enrichment error: %s. VSP Id: %s";
   public static final String ENRICHMENT_COMPLETED = "Enrichment completed. VSP Id: ";
   public static final String CREATE_PACKAGE = "Created package. VSP Id: ";
+  private AuditMessages (){
 
+  }
 }