Remove remaining Jackson 60/78560/1
authorsebdet <sebastien.determe@intl.att.com>
Fri, 15 Feb 2019 14:27:23 +0000 (15:27 +0100)
committersebdet <sebastien.determe@intl.att.com>
Fri, 15 Feb 2019 14:27:23 +0000 (15:27 +0100)
Remove jackson import as jackson shoul dbe removed

Issue-ID: CLAMP-292
Change-Id: I86f46b97b990f03abc6999fc4e54e37e51db9ae5
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
src/main/java/org/onap/clamp/clds/model/sdc/SdcArtifact.java
src/main/java/org/onap/clamp/clds/model/sdc/SdcResource.java
src/main/java/org/onap/clamp/clds/model/sdc/SdcResourceBasicInfo.java
src/main/java/org/onap/clamp/clds/model/sdc/SdcServiceDetail.java

index b52f6f8..f886ee6 100644 (file)
  * limitations under the License.
  * ============LICENSE_END============================================
  * ===================================================================
- * 
+ *
  */
 
 package org.onap.clamp.clds.model.sdc;
 
-import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
-
-@JsonIgnoreProperties(ignoreUnknown = true)
 public class SdcArtifact {
 
     private String artifactName;
index b9466c4..2474da0 100644 (file)
  * limitations under the License.
  * ============LICENSE_END============================================
  * ===================================================================
- * 
+ *
  */
 
 package org.onap.clamp.clds.model.sdc;
 
 import com.att.eelf.configuration.EELFLogger;
 import com.att.eelf.configuration.EELFManager;
-import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 
 import java.math.BigDecimal;
 import java.util.List;
 
-@JsonIgnoreProperties(ignoreUnknown = true)
 public class SdcResource implements Comparable<SdcResource> {
 
-    protected static final EELFLogger logger        = EELFManager.getInstance().getLogger(SdcResource.class);
+    protected static final EELFLogger logger = EELFManager.getInstance().getLogger(SdcResource.class);
     protected static final EELFLogger metricsLogger = EELFManager.getInstance().getMetricsLogger();
 
-    private String                    resourceInstanceName;
-    private String                    resourceName;
-    private String                    resourceInvariantUUID;
-    private String                    resourceVersion;
-    private String                    resoucreType;
-    private String                    resourceUuid;
-    private List<SdcArtifact>     artifacts;
+    private String resourceInstanceName;
+    private String resourceName;
+    private String resourceInvariantUUID;
+    private String resourceVersion;
+    private String resoucreType;
+    private String resourceUuid;
+    private List<SdcArtifact> artifacts;
 
     public String getResourceInstanceName() {
         return resourceInstanceName;
index b75bf4d..e853621 100644 (file)
  * limitations under the License.
  * ============LICENSE_END============================================
  * ===================================================================
- * 
+ *
  */
 
 package org.onap.clamp.clds.model.sdc;
 
 import com.att.eelf.configuration.EELFLogger;
 import com.att.eelf.configuration.EELFManager;
-import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 
 import java.math.BigDecimal;
 
-@JsonIgnoreProperties(ignoreUnknown = true)
 public class SdcResourceBasicInfo implements Comparable<SdcResourceBasicInfo> {
 
-    protected static final EELFLogger logger        = EELFManager.getInstance()
-            .getLogger(SdcResourceBasicInfo.class);
+    protected static final EELFLogger logger = EELFManager.getInstance().getLogger(SdcResourceBasicInfo.class);
     protected static final EELFLogger metricsLogger = EELFManager.getInstance().getMetricsLogger();
 
-    private String                    uuid;
-    private String                    invariantUUID;
-    private String                    name;
-    private String                    version;
-    private String                    toscaModelURL;
-    private String                    category;
-    private String                    subCategory;
-    private String                    resourceType;
-    private String                    lifecycleState;
-    private String                    lastUpdaterUserId;
+    private String uuid;
+    private String invariantUUID;
+    private String name;
+    private String version;
+    private String toscaModelURL;
+    private String category;
+    private String subCategory;
+    private String resourceType;
+    private String lifecycleState;
+    private String lastUpdaterUserId;
 
     @Override
     public int compareTo(SdcResourceBasicInfo in) {
index e981e26..e7265ff 100644 (file)
  * limitations under the License.
  * ============LICENSE_END============================================
  * ===================================================================
- * 
+ *
  */
 
 package org.onap.clamp.clds.model.sdc;
 
 import java.util.List;
 
-import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
-
-@JsonIgnoreProperties(ignoreUnknown = true)
 public class SdcServiceDetail {
 
-    private String                uuid;
-    private String                invariantUUID;
-    private String                name;
-    private String                version;
-    private String                toscaModelURL;
-    private String                category;
-    private String                lifecycleState;
-    private String                lastUpdaterUserId;
-    private String                distributionStatus;
-    private String                lastUpdaterFullName;
+    private String uuid;
+    private String invariantUUID;
+    private String name;
+    private String version;
+    private String toscaModelURL;
+    private String category;
+    private String lifecycleState;
+    private String lastUpdaterUserId;
+    private String distributionStatus;
+    private String lastUpdaterFullName;
     private List<SdcResource> resources;
     private List<SdcArtifact> artifacts;