Merge "Added Junits for Policy PAP-REST"
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / ObadviceExpression.java
index 8d5be97..6992843 100644 (file)
@@ -2,7 +2,7 @@
  * ============LICENSE_START=======================================================
  * ONAP-REST
  * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -63,12 +63,6 @@ public class ObadviceExpression implements Serializable {
 
        @Column(name="type", nullable=false)
        private String type;
-       
-       /*
-       @Lob
-       @Column(name="expression", nullable=false)
-       private byte[] expression;
-       */
 
        //bi-directional many-to-one association to Obadvice
        @ManyToOne
@@ -111,6 +105,7 @@ public class ObadviceExpression implements Serializable {
                this.obadvice = obadvice;
        }
 
+       @Override
        public ObadviceExpression clone() {
                ObadviceExpression expression = new ObadviceExpression();