fixed sonar issue in CreateTenantRequest.java 05/64705/1
authorSandeep J <sandeejh@in.ibm.com>
Wed, 5 Sep 2018 11:44:54 +0000 (17:14 +0530)
committerSandeep J <sandeejh@in.ibm.com>
Wed, 5 Sep 2018 11:45:02 +0000 (17:15 +0530)
fixed sonar issue as detailed in SO-978

Issue-ID: SO-978
Change-Id: Id53fdea75b13b8ce234fe69d121f7bd996f21a82
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
adapters/mso-adapters-rest-interface/src/main/java/org/onap/so/adapters/tenantrest/CreateTenantRequest.java

index d52e714..1f4b872 100644 (file)
@@ -4,6 +4,8 @@
  * ================================================================================
  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
+ * Modifications Copyright (C) 2018 IBM.
+ * ================================================================================
  * 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
@@ -38,7 +40,9 @@ public class CreateTenantRequest extends TenantRequestCommon {
        private Map<String,String> metadata = new HashMap<>();
        private MsoRequest msoRequest = new MsoRequest();
        
-       public CreateTenantRequest() {}
+       public CreateTenantRequest() {
+               //empty constructor
+       }
 
        public String getCloudSiteId() {
                return cloudSiteId;