Fix sonars in models
[policy/models.git] / models-pdp / src / main / java / org / onap / policy / models / pdp / concepts / PdpStateChange.java
index fe953cb..98e2ee9 100644 (file)
@@ -1,7 +1,7 @@
 /*-
  * ============LICENSE_START=======================================================
  *  Copyright (C) 2019 Nordix Foundation.
- *  Modifications Copyright (C) 2019 AT&T Intellectual Property.
+ *  Modifications Copyright (C) 2019, 2021 AT&T Intellectual Property.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -21,6 +21,7 @@
 
 package org.onap.policy.models.pdp.concepts;
 
+import lombok.EqualsAndHashCode;
 import lombok.Getter;
 import lombok.Setter;
 import lombok.ToString;
@@ -36,8 +37,14 @@ import org.onap.policy.models.pdp.enums.PdpState;
 @Getter
 @Setter
 @ToString(callSuper = true)
+@EqualsAndHashCode(callSuper = true)
 public class PdpStateChange extends PdpMessage {
 
+    /**
+     * System from which the message originated.
+     */
+    private String source;
+
     private PdpState state;
 
     /**
@@ -56,6 +63,7 @@ public class PdpStateChange extends PdpMessage {
     public PdpStateChange(PdpStateChange source) {
         super(source);
 
+        this.source = source.source;
         this.state = source.state;
     }
 }