Add simple deploy/undeploy REST API
[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 import org.onap.policy.models.pap.concepts.PdpPolicies;
28
29 /**
30  * Provider for PAP component to deploy PDP groups.
31  */
32 public class PdpGroupDeployProvider {
33
34     /**
35      * Deploys or updates a PDP group.
36      *
37      * @param group PDP group configuration
38      * @return a pair containing the status and the response
39      */
40     public Pair<Response.Status, PdpGroupDeployResponse> deployGroup(PdpGroup group) {
41
42         /*
43          * TODO Lock for updates - return error if already locked.
44          */
45
46         /*
47          * TODO Make updates - sending initial messages to PDPs and arranging for
48          * listeners to complete the deployment actions (in the background). The final
49          * step for the listener is to unlock.
50          */
51
52         /*
53          * TODO Return error if unable to send updates to all PDPs.
54          */
55
56         return Pair.of(Response.Status.OK, new PdpGroupDeployResponse());
57     }
58
59     /**
60      * Deploys or updates PDP policies.
61      *
62      * @param policies PDP policies
63      * @return a pair containing the status and the response
64      */
65     public Pair<Response.Status, PdpGroupDeployResponse> deployPolicies(PdpPolicies policies) {
66
67         /*
68          * TODO Lock for updates - return error if already locked.
69          */
70
71         /*
72          * TODO Make updates - sending initial messages to PDPs and arranging for
73          * listeners to complete the deployment actions (in the background). The final
74          * step for the listener is to unlock.
75          */
76
77         /*
78          * TODO Return error if unable to send updates to all PDPs.
79          */
80
81         return Pair.of(Response.Status.OK, new PdpGroupDeployResponse());
82     }
83 }