36d5eeb237f466dff477f8e9f8a7964f05f56c88
[policy/pap.git] / main / src / main / java / org / onap / policy / pap / main / PapConstants.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP PAP
4  * ================================================================================
5  * Copyright (C) 2019, 2021 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2022 Bell Canada. All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.pap.main;
23
24 import org.onap.policy.common.utils.network.NetworkUtil;
25
26 /**
27  * Names of various items contained in the Registry.
28  */
29 public final class PapConstants {
30
31     // Registry keys
32     public static final String REG_PAP_ACTIVATOR = "object:activator/pap";
33     public static final String REG_STATISTICS_MANAGER = "object:manager/statistics";
34     public static final String REG_PDP_MODIFY_LOCK = "lock:pdp";
35     public static final String REG_PDP_MODIFY_MAP = "object:pdp/modify/map";
36     public static final String REG_METER_REGISTRY = "object:meter/registry";
37
38     // topic names
39     public static final String TOPIC_POLICY_PDP_PAP = "POLICY-PDP-PAP";
40     public static final String TOPIC_POLICY_NOTIFICATION = "POLICY-NOTIFICATION";
41     public static final String TOPIC_POLICY_HEARTBEAT = "POLICY-HEARTBEAT";
42
43     // policy components names
44     public static final String POLICY_API = "api";
45     public static final String POLICY_DISTRIBUTION = "distribution";
46     public static final String POLICY_PAP = "pap";
47     public static final String POLICY_PDPS = "pdps";
48
49     // unique name used when generating PdpMessages
50     public static final String PAP_NAME = NetworkUtil.genUniqueName("pap");
51
52     private PapConstants() {
53         super();
54     }
55 }