2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.policy.controlloop.actor.appclcm;
23 import java.util.Collections;
24 import java.util.HashSet;
26 import java.util.stream.Collectors;
28 public class AppcLcmConstants {
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";
36 public static final Set<String> OPERATION_NAMES =
37 Set.of(OPERATION_RESTART, OPERATION_REBUILD, OPERATION_MIGRATE, OPERATION_CONFIG_MODIFY);
39 // operations from legacy APPC
40 public static final String LEGACY_MODIFY_CONFIG = "ModifyConfig";
42 public static final Set<String> LEGACY_NAMES =
43 Set.of(LEGACY_MODIFY_CONFIG);
45 public static final Set<String> COMBINED_OPERATION_NAMES;
48 Set<String> set = new HashSet<>(OPERATION_NAMES);
49 set.addAll(LEGACY_NAMES);
50 COMBINED_OPERATION_NAMES = Collections.unmodifiableSet(set);
53 protected static final Set<String> SUPPORTS_PAYLOAD =
54 Set.of(OPERATION_CONFIG_MODIFY).stream().map(String::toLowerCase).collect(Collectors.toSet());
56 private AppcLcmConstants() {