Included Policy GUI Enhancements and validations
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / TermList.java
index c9a27ef..9c18343 100644 (file)
@@ -109,6 +109,20 @@ public class TermList implements Serializable {
        @JoinColumn(name="modified_by")
        private UserInfo userModifiedBy;
        
+       public Date getCreatedDate() {
+               return this.createdDate;
+       }
+       public void setCreatedDate(Date createdDate) {
+               this.createdDate = createdDate;
+       }
+       
+       public Date getModifiedDate() {
+               return this.modifiedDate;
+       }
+       public void setModifiedDate(Date modifiedDate) {
+               this.modifiedDate = modifiedDate;
+       }
+       
        public UserInfo getUserCreatedBy() {
                return userCreatedBy;
        }
@@ -128,7 +142,7 @@ public class TermList implements Serializable {
        private static Log LOGGER = LogFactory.getLog(TermList.class);
        
        public TermList() {
-               
+               // Empty constructor
        }
        
        private static final Log auditLogger = LogFactory