da3b2dedf3fbec35d33b45a97f13ea98a0895981
[policy/pap.git] / main / src / main / java / org / onap / policy / pap / main / rest / PdpGroupDeployProvider.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP PAP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.pap.main.rest;
22
23 import javax.ws.rs.core.Response;
24 import org.apache.commons.lang3.tuple.Pair;
25 import org.onap.policy.models.pap.concepts.PdpGroup;
26 import org.onap.policy.models.pap.concepts.PdpGroupDeployResponse;
27
28 /**
29  * Provider for PAP component to deploy PDP groups.
30  */
31 public class PdpGroupDeployProvider {
32
33     /**
34      * Deploys or updates a PDP group.
35      *
36      * @param group PDP group configuration
37      * @return a pair containing the status and the response
38      */
39     public Pair<Response.Status, PdpGroupDeployResponse> deploy(PdpGroup group) {
40
41         /*
42          * TODO Lock for updates - return error if already locked.
43          */
44
45         /*
46          * TODO Make updates - sending initial messages to PDPs and arranging for
47          * listeners to complete the deployment actions (in the background). The final
48          * step for the listener is to unlock.
49          */
50
51         /*
52          * TODO Return error if unable to send updates to all PDPs.
53          */
54
55         return Pair.of(Response.Status.OK, new PdpGroupDeployResponse());
56     }
57 }