7d4cb7b40fd8494f0661317fc359212732c9ce52
[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 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
42     // policy components names
43     public static final String POLICY_API = "api";
44     public static final String POLICY_DISTRIBUTION = "distribution";
45     public static final String POLICY_PAP = "pap";
46     public static final String POLICY_PDPS = "pdps";
47
48     // unique name used when generating PdpMessages
49     public static final String PAP_NAME = NetworkUtil.genUniqueName("pap");
50
51     private PapConstants() {
52         super();
53     }
54 }