Update the license for 2017-2018 license
[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 package org.onap.aai.introspection;
21
22 import org.onap.aai.schema.enums.PropertyMetadata;
23
24 import java.util.Map;
25 import java.util.Set;
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                         if (map.containsKey("dataLocation")) {
41                                 return false;
42                         }
43                         return true;
44                 };
45         }
46          
47         public static PropertyPredicate<Introspector, String> isVisible() {
48                 return (obj, prop) -> {
49                         final Map<PropertyMetadata, String> map = obj.getPropertyMetadata(prop);
50                         if (map.containsKey(PropertyMetadata.VISIBILITY)) {
51                                 return !Visibility.internal.equals(Visibility.valueOf(map.get(PropertyMetadata.VISIBILITY)));
52                         }
53                         return true;
54                 };
55         }
56         
57         public static PropertyPredicate<Introspector, String> includeInExamples() {
58                 return (obj, prop) -> {
59                         final Map<PropertyMetadata, String> map = obj.getPropertyMetadata(prop);
60                         if (map.containsKey(PropertyMetadata.VISIBILITY)) {
61                                 return !Visibility.internal.equals(Visibility.valueOf(map.get(PropertyMetadata.VISIBILITY)));
62                         }
63                         if (map.containsKey("dataLocation")) {
64                                 return false;
65                         }
66                         return true;
67                 };
68         }
69         
70         public static PropertyPredicate<Introspector, String> isIndexed() {
71                 return (obj, prop) -> {
72                         Set<String> indexed = obj.getIndexedProperties();
73                         return indexed.contains(prop);
74                 };
75         }
76 }