PAP Deployment API changes - change url to uri 15/117915/3
authora.sreekumar <ajith.sreekumar@bell.ca>
Tue, 16 Feb 2021 16:56:47 +0000 (16:56 +0000)
committera.sreekumar <ajith.sreekumar@bell.ca>
Wed, 17 Feb 2021 11:02:41 +0000 (11:02 +0000)
Change-Id: I6fa4b001a0c4573a34e1cefe0d32ca969ca5096e
Issue-ID: POLICY-2526
Signed-off-by: a.sreekumar <ajith.sreekumar@bell.ca>
models-pap/src/main/java/org/onap/policy/models/pap/concepts/PdpGroupDeployResponse.java
models-pap/src/test/java/org/onap/policy/models/pap/concepts/PdpGroupDeployResponseTest.java

index 60f76e2..6d94d71 100644 (file)
@@ -22,6 +22,7 @@
 package org.onap.policy.models.pap.concepts;
 
 import lombok.Getter;
+import lombok.NoArgsConstructor;
 import lombok.Setter;
 import lombok.ToString;
 
@@ -31,6 +32,7 @@ import lombok.ToString;
 @Getter
 @Setter
 @ToString(callSuper = true)
+@NoArgsConstructor
 public class PdpGroupDeployResponse extends SimpleResponse {
 
     /**
@@ -39,18 +41,18 @@ public class PdpGroupDeployResponse extends SimpleResponse {
     private String message;
 
     /**
-     * Url to fetch the deployment status.
+     * URI to fetch the deployment status.
      */
-    private String url;
+    private String uri;
 
     /**
      * Constructs the object.
      *
      * @param message the message
-     * @param url the url to get actual deployment status
+     * @param uri the uri to get actual deployment status
      */
-    public PdpGroupDeployResponse(String message, String url) {
+    public PdpGroupDeployResponse(String message, String uri) {
         this.message = message;
-        this.url = url;
+        this.uri = uri;
     }
 }
index 178687d..d3b8cc4 100644 (file)
@@ -29,21 +29,26 @@ import org.junit.Test;
  */
 public class PdpGroupDeployResponseTest {
 
-    private static final String URL = "/policy/pap/v1/policies/status";
+    private static final String URI = "/policy/pap/v1/policies/status";
     private static final String MESSAGE = "the message";
 
     @Test
     public void testPdpGroupDeployResponse() {
-        assertNotNull(new PdpGroupDeployResponse("message", "url"));
+        assertNotNull(new PdpGroupDeployResponse("message", "uri"));
         assertNotNull(new PdpGroupDeployResponse("message", null));
         assertNotNull(new PdpGroupDeployResponse(null, null));
+        assertNotNull(new PdpGroupDeployResponse());
 
-        PdpGroupDeployResponse resp = new PdpGroupDeployResponse(MESSAGE, URL);
+        PdpGroupDeployResponse resp = new PdpGroupDeployResponse(MESSAGE, URI);
         assertEquals(MESSAGE, resp.getMessage());
-        assertEquals(URL, resp.getUrl());
+        assertEquals(URI, resp.getUri());
 
         resp = new PdpGroupDeployResponse(null, null);
         assertNull(resp.getMessage());
-        assertNull(resp.getUrl());
+        assertNull(resp.getUri());
+
+        resp = new PdpGroupDeployResponse();
+        assertNull(resp.getMessage());
+        assertNull(resp.getUri());
     }
 }