Sync Integ to Master
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / model / EntrySchema.java
index 0c586c7..f1a7dcb 100644 (file)
 package org.openecomp.sdc.be.tosca.model;
 
 public class EntrySchema {
-       private String type;
-       private String description;
+    private String type;
+    private String description;
 
-       public String getType() {
-               return type;
-       }
+    public String getType() {
+        return type;
+    }
 
-       public void setType(String type) {
-               this.type = type;
-       }
+    public void setType(String type) {
+        this.type = type;
+    }
 
-       public String getDescription() {
-               return description;
-       }
+    public String getDescription() {
+        return description;
+    }
 
-       public void setDescription(String description) {
-               this.description = description;
-       }
+    public void setDescription(String description) {
+        this.description = description;
+    }
 
 }