re base code
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / RelationshipImpl.java
index 6028809..0d07027 100644 (file)
 
 package org.openecomp.sdc.be.model;
 
-import java.io.Serializable;
+public class RelationshipImpl {
 
-public class RelationshipImpl implements Serializable {
+    private String type;
 
-       /**
-        * 
-        */
-       private static final long serialVersionUID = -8272341490256251337L;
+    public String getType() {
+        return type;
+    }
 
-       private String type;
+    public void setType(String type) {
+        this.type = type;
+    }
 
-       public String getType() {
-               return type;
-       }
-
-       public void setType(String type) {
-               this.type = type;
-       }
-
-       @Override
-       public String toString() {
-               return "RelationshipImpl [type=" + type + "]";
-       }
+    @Override
+    public String toString() {
+        return "RelationshipImpl [type=" + type + "]";
+    }
 
 }