90edd5e9e7042fb783862e86667bd0f8fcc0ae1c
[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 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.introspection;
23
24 import org.onap.aai.schema.enums.PropertyMetadata;
25
26 import java.util.Map;
27 import java.util.Set;
28
29 public final class PropertyPredicates {
30
31         private PropertyPredicates() {
32                 
33         }
34         
35         public static PropertyPredicate<Introspector, String> includeInTestGeneration() {
36                 return (obj, prop) -> {
37                         final Map<PropertyMetadata, String> map = obj.getPropertyMetadata(prop);
38                         if (map.containsKey(PropertyMetadata.VISIBILITY)) {
39                                 return !(Visibility.internal.equals(Visibility.valueOf(map.get(PropertyMetadata.VISIBILITY))) 
40                                                 || Visibility.deployment.equals(Visibility.valueOf(map.get(PropertyMetadata.VISIBILITY))));
41                         }
42                         if (map.containsKey("dataLocation")) {
43                                 return false;
44                         }
45                         return true;
46                 };
47         }
48          
49         public static PropertyPredicate<Introspector, String> isVisible() {
50                 return (obj, prop) -> {
51                         final Map<PropertyMetadata, String> map = obj.getPropertyMetadata(prop);
52                         if (map.containsKey(PropertyMetadata.VISIBILITY)) {
53                                 return !Visibility.internal.equals(Visibility.valueOf(map.get(PropertyMetadata.VISIBILITY)));
54                         }
55                         return true;
56                 };
57         }
58         
59         public static PropertyPredicate<Introspector, String> includeInExamples() {
60                 return (obj, prop) -> {
61                         final Map<PropertyMetadata, String> map = obj.getPropertyMetadata(prop);
62                         if (map.containsKey(PropertyMetadata.VISIBILITY)) {
63                                 return !Visibility.internal.equals(Visibility.valueOf(map.get(PropertyMetadata.VISIBILITY)));
64                         }
65                         if (map.containsKey("dataLocation")) {
66                                 return false;
67                         }
68                         return true;
69                 };
70         }
71         
72         public static PropertyPredicate<Introspector, String> isIndexed() {
73                 return (obj, prop) -> {
74                         Set<String> indexed = obj.getIndexedProperties();
75                         return indexed.contains(prop);
76                 };
77         }
78 }