Policy 1707 commit to LF
[policy/engine.git] / ECOMP-REST / src / main / java / org / openecomp / policy / rest / jpa / MicroServiceModels.java
index ca74606..c1eb240 100644 (file)
@@ -31,7 +31,6 @@
 package org.openecomp.policy.rest.jpa;
 
 import java.io.Serializable;
-import java.util.Date;
 
 import javax.persistence.Column;
 import javax.persistence.Entity;
@@ -48,10 +47,6 @@ import javax.persistence.Table;
  * 
  * @version: 0.1
  */
-import javax.persistence.Temporal;
-import javax.persistence.TemporalType;
-
-import org.openecomp.policy.rest.jpa.UserInfo;
 
 
 @Entity
@@ -87,6 +82,12 @@ public class MicroServiceModels implements Serializable{
        @Column (name="version", nullable=false, length=2000)
        private String version;
        
+       @Column (name="enumValues", nullable=false, length=2000)
+       private String enumValues;
+       
+       @Column (name="annotation", nullable=false, length=2000)
+       private String annotation;
+       
        public String getSub_attributes() {
                return sub_attributes;
        }
@@ -169,4 +170,20 @@ public class MicroServiceModels implements Serializable{
        public void setModelName(String modelName){
                this.modelName = modelName;
        }
+       
+       public String getEnumValues() {
+               return enumValues;
+       }
+
+       public void setEnumValues(String enumValues) {
+               this.enumValues = enumValues;
+       }
+       
+       public String getAnnotation() {
+               return annotation;
+       }
+
+       public void setAnnotation(String annotation) {
+               this.annotation = annotation;
+       }
 }