Updating PAP deployment API to reflect actual status 06/117806/6
authora.sreekumar <ajith.sreekumar@bell.ca>
Fri, 12 Feb 2021 16:57:58 +0000 (16:57 +0000)
committera.sreekumar <ajith.sreekumar@bell.ca>
Mon, 15 Feb 2021 17:53:17 +0000 (17:53 +0000)
Change-Id: I1fb0232d2f5fe37e95e87babb233a824212439ff
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 [new file with mode: 0644]

index 2d7dd2e..60f76e2 100644 (file)
@@ -3,6 +3,7 @@
  * ONAP Policy Models
  * ================================================================================
  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2021 Bell Canada. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -32,4 +33,24 @@ import lombok.ToString;
 @ToString(callSuper = true)
 public class PdpGroupDeployResponse extends SimpleResponse {
 
+    /**
+     * Response message for deployment.
+     */
+    private String message;
+
+    /**
+     * Url to fetch the deployment status.
+     */
+    private String url;
+
+    /**
+     * Constructs the object.
+     *
+     * @param message the message
+     * @param url the url to get actual deployment status
+     */
+    public PdpGroupDeployResponse(String message, String url) {
+        this.message = message;
+        this.url = url;
+    }
 }
diff --git a/models-pap/src/test/java/org/onap/policy/models/pap/concepts/PdpGroupDeployResponseTest.java b/models-pap/src/test/java/org/onap/policy/models/pap/concepts/PdpGroupDeployResponseTest.java
new file mode 100644 (file)
index 0000000..178687d
--- /dev/null
@@ -0,0 +1,49 @@
+/*-
+ * ============LICENSE_START=======================================================
+ *  Copyright (C) 2021 Bell Canada. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.policy.models.pap.concepts;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+
+import org.junit.Test;
+
+/**
+ * Test class for PdpGroupDeployResponse.
+ */
+public class PdpGroupDeployResponseTest {
+
+    private static final String URL = "/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", null));
+        assertNotNull(new PdpGroupDeployResponse(null, null));
+
+        PdpGroupDeployResponse resp = new PdpGroupDeployResponse(MESSAGE, URL);
+        assertEquals(MESSAGE, resp.getMessage());
+        assertEquals(URL, resp.getUrl());
+
+        resp = new PdpGroupDeployResponse(null, null);
+        assertNull(resp.getMessage());
+        assertNull(resp.getUrl());
+    }
+}