Add "source" to PAP-PDP messages
[policy/models.git] / models-pdp / src / main / java / org / onap / policy / models / pdp / concepts / PdpStateChange.java
index fe953cb..6a7b7d5 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.
@@ -38,6 +38,11 @@ import org.onap.policy.models.pdp.enums.PdpState;
 @ToString(callSuper = true)
 public class PdpStateChange extends PdpMessage {
 
+    /**
+     * System from which the message originated.
+     */
+    private String source;
+
     private PdpState state;
 
     /**
@@ -56,6 +61,7 @@ public class PdpStateChange extends PdpMessage {
     public PdpStateChange(PdpStateChange source) {
         super(source);
 
+        this.source = source.source;
         this.state = source.state;
     }
 }