From 59d6c65ea096b5fe169c8f62acc15dd0f3de7cfb Mon Sep 17 00:00:00 2001 From: "a.sreekumar" Date: Fri, 12 Feb 2021 16:57:58 +0000 Subject: Updating PAP deployment API to reflect actual status Change-Id: I1fb0232d2f5fe37e95e87babb233a824212439ff Issue-ID: POLICY-2526 Signed-off-by: a.sreekumar --- .../models/pap/concepts/PdpGroupDeployResponse.java | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'models-pap/src/main/java') diff --git a/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PdpGroupDeployResponse.java b/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PdpGroupDeployResponse.java index 2d7dd2ec3..60f76e29a 100644 --- a/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PdpGroupDeployResponse.java +++ b/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PdpGroupDeployResponse.java @@ -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; + } } -- cgit 1.2.3-korg