Changes for Checkstyle 8.32
[policy/models.git] / models-base / src / main / java / org / onap / policy / models / base / PfConceptFilter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.base;
23
24 import java.util.List;
25 import java.util.stream.Collectors;
26 import lombok.Builder;
27 import lombok.Data;
28 import lombok.NonNull;
29
30 /**
31  * Filter class for searches for {@link ToscaPolicy} instances. If any fields are null, they are ignored.
32  *
33  * @author Liam Fallon (liam.fallon@est.tech)
34  */
35 @Builder
36 @Data
37 public class PfConceptFilter implements PfObjectFilter<PfConcept> {
38     public static final String LATEST_VERSION = "LATEST";
39
40     // Exact expression
41     private String name;
42
43     // Exact match, set to LATEST_VERSION to get the latest version
44     private String version;
45
46     // version prefix
47     private String versionPrefix;
48
49     @Override
50     public List<PfConcept> filter(@NonNull final List<PfConcept> originalList) {
51
52         // @formatter:off
53         List<PfConcept> returnList = originalList.stream()
54                 .filter(filterStringPred(name, PfConcept::getName))
55                 .filter(filterStringPred((LATEST_VERSION.equals(version) ? null : version), PfConcept::getVersion))
56                 .filter(filterPrefixPred(versionPrefix, PfConcept::getVersion))
57                 .collect(Collectors.toList());
58         // @formatter:off
59
60         if (LATEST_VERSION.equals(version)) {
61             return this.latestVersionFilter(returnList);
62         } else  {
63             return returnList;
64         }
65     }
66 }