Removing deprecated DMAAP library
[policy/drools-pdp.git] / feature-pooling-messages / src / main / java / org / onap / policy / drools / pooling / message / MessageWithAssignments.java
@@ -3,6 +3,7 @@
  * ONAP
  * ================================================================================
  * Copyright (C) 2018-2019, 2021 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2024 Nordix Foundation.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -28,14 +29,14 @@ import org.onap.policy.drools.pooling.PoolingFeatureException;
 /**
  * A Message that includes bucket assignments.
  */
+@Setter
+@Getter
 @NoArgsConstructor
 public class MessageWithAssignments extends Message {
 
     /**
      * Bucket assignments, as known by the source host.
      */
-    @Getter
-    @Setter
     private BucketAssignments assignments;
 
 
@@ -43,7 +44,7 @@ public class MessageWithAssignments extends Message {
      * Constructor.
      *
      * @param source host on which the message originated
-     * @param assignments assignements
+     * @param assignments assignments
      */
     public MessageWithAssignments(String source, BucketAssignments assignments) {
         super(source);