Java 17 Upgrade
[policy/models.git] / models-interactions / model-actors / actor.so / src / main / java / org / onap / policy / controlloop / actor / so / RestManagerResponse.java
index 1b49ab5..129305d 100644 (file)
@@ -2,7 +2,8 @@
  * ============LICENSE_START=======================================================
  * ONAP
  * ================================================================================
- * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2023 Nordix Foundation.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 package org.onap.policy.controlloop.actor.so;
 
+import jakarta.ws.rs.core.EntityTag;
+import jakarta.ws.rs.core.GenericType;
+import jakarta.ws.rs.core.Link;
+import jakarta.ws.rs.core.Link.Builder;
+import jakarta.ws.rs.core.MediaType;
+import jakarta.ws.rs.core.MultivaluedMap;
+import jakarta.ws.rs.core.NewCookie;
+import jakarta.ws.rs.core.Response;
 import java.lang.annotation.Annotation;
 import java.net.URI;
 import java.util.Date;
 import java.util.Locale;
 import java.util.Map;
 import java.util.Set;
-import javax.ws.rs.core.EntityTag;
-import javax.ws.rs.core.GenericType;
-import javax.ws.rs.core.Link;
-import javax.ws.rs.core.Link.Builder;
-import javax.ws.rs.core.MediaType;
-import javax.ws.rs.core.MultivaluedMap;
-import javax.ws.rs.core.NewCookie;
-import javax.ws.rs.core.Response;
+import lombok.AllArgsConstructor;
 import lombok.Getter;
 import org.onap.policy.common.utils.coder.Coder;
 import org.onap.policy.common.utils.coder.CoderException;
@@ -42,6 +44,7 @@ import org.onap.policy.common.utils.coder.CoderException;
  * RestManager Response suitable for use with subclasses of HttpOperation. Only a couple
  * of methods are implemented; the rest throw {@link UnsupportedOperationException}.
  */
+@AllArgsConstructor
 public class RestManagerResponse extends Response {
     // TODO move to actorServices
 
@@ -51,19 +54,6 @@ public class RestManagerResponse extends Response {
     private final String body;
     private final Coder coder;
 
-    /**
-     * Constructs the object.
-     *
-     * @param status HTTP response status code
-     * @param body response body
-     * @param coder coder to decode the entity body
-     */
-    public RestManagerResponse(int status, String body, Coder coder) {
-        this.status = status;
-        this.body = body;
-        this.coder = coder;
-    }
-
     @Override
     public void close() {
         // do nothing