209dc612af9a80ef8242a1162d4299b63160ce5c
[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  * ================================================================================
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;
22
23 import org.onap.policy.common.utils.network.NetworkUtil;
24
25 /**
26  * Names of various items contained in the Registry.
27  */
28 public final class PapConstants {
29
30     // Registry keys
31     public static final String REG_PAP_ACTIVATOR = "object:activator/pap";
32     public static final String REG_STATISTICS_MANAGER = "object:manager/statistics";
33     public static final String REG_PDP_MODIFY_LOCK = "lock:pdp";
34     public static final String REG_PDP_MODIFY_MAP = "object:pdp/modify/map";
35     public static final String REG_POLICY_NOTIFIER = "object:policy/notifier";
36     public static final String REG_PAP_DAO_FACTORY = "object:pap/dao/factory";
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_STATISTICS = "POLICY-STATISTICS";
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 }