Merge "FFix the Bug of Missing fields on View Screen"
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / ConstraintValue.java
index 57e9af8..f2cdbf1 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.
@@ -60,6 +60,7 @@ public class ConstraintValue implements Serializable {
        private Attribute attribute;
 
        public ConstraintValue() {
+               //An empty constructor
        }
 
        public ConstraintValue(String property, String value) {
@@ -103,7 +104,8 @@ public class ConstraintValue implements Serializable {
        public void setAttribute(Attribute attribute) {
                this.attribute = attribute;
        }
-       
+
+       @Override
        public ConstraintValue clone() {
                ConstraintValue constraint = new ConstraintValue();