Xacml PDP Register/Unregister Changes
[policy/xacml-pdp.git] / main / src / main / java / org / onap / policy / pdpx / main / comm / XacmlPdpMessage.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
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  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.pdpx.main.comm;
24
25 import java.net.UnknownHostException;
26 import org.onap.policy.common.utils.network.NetworkUtil;
27 import org.onap.policy.models.pdp.concepts.PdpStatus;
28 import org.onap.policy.models.pdp.enums.PdpHealthStatus;
29 import org.onap.policy.models.pdp.enums.PdpState;
30 import org.onap.policy.pdpx.main.rest.XacmlPdpApplicationManager;
31 import org.onap.policy.pdpx.main.startstop.XacmlPdpActivator;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34
35 public class XacmlPdpMessage {
36
37     // The logger for this class
38     private static final Logger LOGGER = LoggerFactory.getLogger(XacmlPdpMessage.class);
39
40     /**
41      * Method used to format the status message.
42      *
43      * @param state of the PDP
44      * @return status message of the PDP
45      * @throws UnknownHostException if cannot get hostname
46      */
47     public PdpStatus formatStatusMessage(PdpState state) {
48         PdpStatus status = new PdpStatus();
49         status.setName(NetworkUtil.getHostname());
50
51         if (XacmlPdpActivator.getCurrent().isAlive()) {
52             status.setHealthy(PdpHealthStatus.HEALTHY);
53         } else {
54             status.setHealthy(PdpHealthStatus.NOT_HEALTHY);
55         }
56
57         status.setPdpType("xacml");
58         status.setState(state);
59         status.setSupportedPolicyTypes(XacmlPdpApplicationManager.getToscaPolicyTypeIdents());
60
61         return status;
62
63     }
64 }