efcbe492f4fec21829173c32b0308ffc9496d802
[policy/models.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020 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.controlloop.actor.appclcm;
22
23 import java.util.Collections;
24 import java.util.HashSet;
25 import java.util.Set;
26 import java.util.stream.Collectors;
27
28 public class AppcLcmConstants {
29
30     // Strings for OPERATIONs
31     public static final String OPERATION_RESTART = "Restart";
32     public static final String OPERATION_REBUILD = "Rebuild";
33     public static final String OPERATION_MIGRATE = "Migrate";
34     public static final String OPERATION_CONFIG_MODIFY = "ConfigModify";
35
36     public static final Set<String> OPERATION_NAMES =
37                     Set.of(OPERATION_RESTART, OPERATION_REBUILD, OPERATION_MIGRATE, OPERATION_CONFIG_MODIFY);
38
39     // operations from legacy APPC
40     public static final String LEGACY_MODIFY_CONFIG = "ModifyConfig";
41
42     public static final Set<String> LEGACY_NAMES =
43                     Set.of(LEGACY_MODIFY_CONFIG);
44
45     public static final Set<String> COMBINED_OPERATION_NAMES;
46
47     static {
48         Set<String> set = new HashSet<>(OPERATION_NAMES);
49         set.addAll(LEGACY_NAMES);
50         COMBINED_OPERATION_NAMES = Collections.unmodifiableSet(set);
51     }
52
53     protected static final Set<String> SUPPORTS_PAYLOAD =
54                     Set.of(OPERATION_CONFIG_MODIFY).stream().map(String::toLowerCase).collect(Collectors.toSet());
55
56     private AppcLcmConstants() {
57         // do nothing
58     }
59 }