Monitoring policy creation foundation
[policy/xacml-pdp.git] / applications / common / src / main / java / org / onap / policy / pdp / xacml / application / common / ToscaDictionary.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.pdp.xacml.application.common;
24
25 import com.att.research.xacml.api.Identifier;
26 import com.att.research.xacml.api.XACML3;
27 import com.att.research.xacml.std.IdentifierImpl;
28
29 public final class ToscaDictionary {
30
31     private ToscaDictionary() {
32         super();
33     }
34
35     /*
36      * These are the ID's for various TOSCA Policy Types we are supporting in the Applications.
37      */
38     public static final Identifier URN_ONAP =
39             new IdentifierImpl("urn:org:onap");
40
41     public static final Identifier ID_RESOURCE_POLICY_ID =
42             XACML3.ID_RESOURCE_RESOURCE_ID;
43
44     public static final Identifier ID_RESOURCE_POLICY_TYPE =
45             new IdentifierImpl(URN_ONAP, "policy-type");
46
47     public static final Identifier ID_RESOURCE_POLICY_TYPE_VERSION =
48             new IdentifierImpl(URN_ONAP, "policy-type-version");
49
50     public static final Identifier ID_OBLIGATION_REST_BODY =
51             new IdentifierImpl(URN_ONAP, "rest:body");
52
53     public static final Identifier ID_OBLIGATION_POLICY_MONITORING =
54             new IdentifierImpl(URN_ONAP, ":obligation:monitoring");
55
56     public static final Identifier ID_OBLIGATION_POLICY_MONITORING_CONTENTS =
57             new IdentifierImpl(URN_ONAP, ":obligation:monitoring:contents");
58
59     public static final Identifier ID_OBLIGATION_POLICY_MONITORING_CATEGORY =
60             XACML3.ID_ATTRIBUTE_CATEGORY_RESOURCE;
61
62     public static final Identifier ID_OBLIGATION_POLICY_MONITORING_DATATYPE =
63             XACML3.ID_DATATYPE_STRING;
64
65     public static final Identifier ID_OBLIGATION_ISSUER =
66             new IdentifierImpl(URN_ONAP, "issuer:monitoring");
67
68
69 }