Fix all blocker sonar issues and some checkstyle
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / introspection / PropertyPredicates.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 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.aai.introspection;
22
23 import java.util.Map;
24 import java.util.Set;
25 import org.onap.aai.schema.enums.PropertyMetadata;
26
27 public final class PropertyPredicates {
28
29     private PropertyPredicates() {
30
31     }
32
33     public static PropertyPredicate<Introspector, String> includeInTestGeneration() {
34         return (obj, prop) -> {
35             final Map<PropertyMetadata, String> map = obj.getPropertyMetadata(prop);
36             if (map.containsKey(PropertyMetadata.VISIBILITY)) {
37                 return !(Visibility.internal.equals(Visibility.valueOf(map.get(PropertyMetadata.VISIBILITY)))
38                         || Visibility.deployment.equals(Visibility.valueOf(map.get(PropertyMetadata.VISIBILITY))));
39             }
40             return true;
41         };
42     }
43
44     public static PropertyPredicate<Introspector, String> isVisible() {
45         return (obj, prop) -> {
46             final Map<PropertyMetadata, String> map = obj.getPropertyMetadata(prop);
47             if (map.containsKey(PropertyMetadata.VISIBILITY)) {
48                 return !Visibility.internal.equals(Visibility.valueOf(map.get(PropertyMetadata.VISIBILITY)));
49             }
50             return true;
51         };
52     }
53
54     public static PropertyPredicate<Introspector, String> includeInExamples() {
55         return (obj, prop) -> {
56             final Map<PropertyMetadata, String> map = obj.getPropertyMetadata(prop);
57             if (map.containsKey(PropertyMetadata.VISIBILITY)) {
58                 return !Visibility.internal.equals(Visibility.valueOf(map.get(PropertyMetadata.VISIBILITY)));
59             }
60             return true;
61         };
62     }
63
64     public static PropertyPredicate<Introspector, String> isIndexed() {
65         return (obj, prop) -> {
66             Set<String> indexed = obj.getIndexedProperties();
67             return indexed.contains(prop);
68         };
69     }
70 }