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%2FPrefixList.java;h=16ef24cf711d565f497b733a5e97ba8dff78ac85;hp=98e94022803423c89b7e4be0910864ff388e0cec;hb=401b48bc573561f097960a9ca7abe6d788456f28;hpb=9301fed7c290f52208922f780fdfe4b5a880b5aa diff --git a/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PrefixList.java b/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PrefixList.java index 98e940228..16ef24cf7 100644 --- a/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PrefixList.java +++ b/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PrefixList.java @@ -56,28 +56,25 @@ public class PrefixList implements Serializable { @Column(name="pl_value", nullable=false) private String prefixListValue; -/* - @Temporal(TemporalType.TIMESTAMP) - @Column(name="modified_date", nullable=false) - private Date modifiedDate;*/ public PrefixList() { - + // Empty constructor } public PrefixList(String string, String userid) { this(domain); } public PrefixList(String domain) { - + // Empty constructor } @PrePersist public void prePersist() { - + // Empty function } @PreUpdate public void preUpdate() { + // Empty function } public String getPrefixListName() { return this.prefixListName;