blob: 995e608804a712eea10cdfd2e5e6a67d77a16177 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
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
22
23package org.onap.osam.properties;
24
25import org.togglz.core.Feature;
26import org.togglz.core.context.FeatureContext;
27
28public enum Features implements Feature {
29
30
31 FLAG_ASYNC_JOBS,
32 FLAG_REGION_ID_FROM_REMOTE,
33 CREATE_INSTANCE_TEST,
34 EMPTY_DRAWING_BOARD_TEST,
35 FLAG_ADVANCED_PORTS_FILTER,
36 FLAG_ADD_MSO_TESTAPI_FIELD,
37 FLAG_ASYNC_INSTANTIATION,
38 FLAG_SERVICE_MODEL_CACHE,
39 FLAG_UNASSIGN_SERVICE,
40 FLAG_NETWORK_TO_ASYNC_INSTANTIATION,
41 FLAG_COLLECTION_RESOURCE_SUPPORT,
42 FLAG_SHOW_ASSIGNMENTS,
43 FLAG_SHOW_VERIFY_SERVICE,
44 FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD,
45 FLAG_PNP_INSTANTIATION;
46
47 public boolean isActive() {
48 return FeatureContext.getFeatureManager().isActive(this);
49 }
50
51}