Merge "[AAI] Fix doc config files"
[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
26 import org.onap.aai.schema.enums.PropertyMetadata;
27
28 public final class PropertyPredicates {
29
30     private PropertyPredicates() {
31
32     }
33
34     public static PropertyPredicate<Introspector, String> includeInTestGeneration() {
35         return (obj, prop) -> {
36             final Map<PropertyMetadata, String> map = obj.getPropertyMetadata(prop);
37             if (map.containsKey(PropertyMetadata.VISIBILITY)) {
38                 return !(Visibility.internal.equals(Visibility.valueOf(map.get(PropertyMetadata.VISIBILITY)))
39                         || Visibility.deployment.equals(Visibility.valueOf(map.get(PropertyMetadata.VISIBILITY))));
40             }
41             return true;
42         };
43     }
44
45     public static PropertyPredicate<Introspector, String> isVisible() {
46         return (obj, prop) -> {
47             final Map<PropertyMetadata, String> map = obj.getPropertyMetadata(prop);
48             if (map.containsKey(PropertyMetadata.VISIBILITY)) {
49                 return !Visibility.internal.equals(Visibility.valueOf(map.get(PropertyMetadata.VISIBILITY)));
50             }
51             return true;
52         };
53     }
54
55     public static PropertyPredicate<Introspector, String> includeInExamples() {
56         return (obj, prop) -> {
57             final Map<PropertyMetadata, String> map = obj.getPropertyMetadata(prop);
58             if (map.containsKey(PropertyMetadata.VISIBILITY)) {
59                 return !Visibility.internal.equals(Visibility.valueOf(map.get(PropertyMetadata.VISIBILITY)));
60             }
61             return true;
62         };
63     }
64
65     public static PropertyPredicate<Introspector, String> isIndexed() {
66         return (obj, prop) -> {
67             Set<String> indexed = obj.getIndexedProperties();
68             return indexed.contains(prop);
69         };
70     }
71 }