X-Git-Url: https://gerrit.onap.org/r/gitweb?p=policy%2Fengine.git;a=blobdiff_plain;f=ONAP-REST%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fpolicy%2Frest%2Fjpa%2FActionList.java;h=7d46330f0a9d1bba4fa999b7584683c0b3dc7a64;hp=6be8cd7a807d39898ad16028936736864e34aa32;hb=401b48bc573561f097960a9ca7abe6d788456f28;hpb=9301fed7c290f52208922f780fdfe4b5a880b5aa diff --git a/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/ActionList.java b/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/ActionList.java index 6be8cd7a8..7d46330f0 100644 --- a/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/ActionList.java +++ b/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/ActionList.java @@ -53,28 +53,25 @@ public class ActionList implements Serializable { @Column(name="description") private String description; -/* - @Temporal(TemporalType.TIMESTAMP) - @Column(name="modified_date", nullable=false) - private Date modifiedDate;*/ public ActionList() { - + //An empty constructor } public ActionList(String string, String userid) { this(domain); } public ActionList(String domain) { - + //An empty constructor } @PrePersist public void prePersist() { - + //An empty function } @PreUpdate public void preUpdate() { + //An empty function } public String getActionName() { return this.actionName;