Re-format source code
[policy/engine.git] / PolicyEngineUtils / src / main / java / org / onap / policy / std / StdPDPNotification.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineUtils
4  * ================================================================================
5  * Copyright (C) 2017, 2019 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.policy.std;
22
23 import java.util.Collection;
24 import java.util.Collections;
25 import java.util.HashSet;
26
27 import org.onap.policy.api.LoadedPolicy;
28 import org.onap.policy.api.NotificationType;
29 import org.onap.policy.api.PDPNotification;
30 import org.onap.policy.api.RemovedPolicy;
31
32 public class StdPDPNotification implements PDPNotification {
33
34     private Collection<StdRemovedPolicy> removedPolicies = null;
35     private Collection<StdLoadedPolicy> loadedPolicies = null;
36     private Collection<RemovedPolicy> removed = null;
37     private Collection<LoadedPolicy> updated = null;
38     private NotificationType notificationType = null;
39
40     @Override
41     public Collection<RemovedPolicy> getRemovedPolicies() {
42         removed = new HashSet<>();
43         if (removedPolicies != null) {
44             removed.addAll(removedPolicies);
45             return this.removed;
46         }
47         return Collections.emptyList();
48     }
49
50     @Override
51     public Collection<LoadedPolicy> getLoadedPolicies() {
52         updated = new HashSet<>();
53         if (loadedPolicies != null) {
54             updated.addAll(loadedPolicies);
55             return updated;
56         }
57         return Collections.emptyList();
58     }
59
60     @Override
61     public NotificationType getNotificationType() {
62         return notificationType;
63     }
64
65     public void setNotificationType(NotificationType notificationType) {
66         this.notificationType = notificationType;
67     }
68
69     public void setLoadedPolicies(Collection<StdLoadedPolicy> loadedPolicies) {
70         this.loadedPolicies = loadedPolicies;
71     }
72
73     public void setRemovedPolicies(Collection<StdRemovedPolicy> removedPolicies) {
74         this.removedPolicies = removedPolicies;
75     }
76 }