Merge "Complete filters for Database Fetches"
[policy/models.git] / models-pdp / src / main / java / org / onap / policy / models / pdp / concepts / PdpGroup.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.pdp.concepts;
23
24 import java.util.LinkedHashMap;
25 import java.util.List;
26 import java.util.Map;
27
28 import lombok.Data;
29 import lombok.NoArgsConstructor;
30
31 import org.onap.policy.models.base.PfNameVersion;
32 import org.onap.policy.models.base.PfUtils;
33 import org.onap.policy.models.pdp.enums.PdpState;
34
35 /**
36  * Class to represent a PDPGroup, which groups multiple PDPSubGroup entities together for
37  * a particular domain.
38  *
39  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
40  */
41 @Data
42 @NoArgsConstructor
43 public class PdpGroup implements PfNameVersion, Comparable<PdpGroup> {
44     private String name;
45     private String version;
46     private String description;
47     private PdpState pdpGroupState;
48     private Map<String, String> properties;
49     private List<PdpSubGroup> pdpSubgroups;
50
51     /*
52      * Note: removed "@NotNull" annotation from the constructor argument, because it
53      * cannot be covered by a junit test, as the superclass does the check and throws an
54      * exception first.
55      */
56
57     /**
58      * Constructs the object, making a deep copy from the source.
59      *
60      * @param source source from which to copy fields
61      */
62     public PdpGroup(PdpGroup source) {
63         this.name = source.name;
64         this.version = source.version;
65         this.description = source.description;
66         this.pdpGroupState = source.pdpGroupState;
67         this.properties = (source.properties == null ? null : new LinkedHashMap<>(source.properties));
68         this.pdpSubgroups = PfUtils.mapList(source.pdpSubgroups, PdpSubGroup::new);
69     }
70
71     @Override
72     public int compareTo(final PdpGroup other) {
73         return compareNameVersion(this, other);
74     }
75 }