aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcaegen2/services/sonhms/NewPmNotification.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/dcaegen2/services/sonhms/NewPmNotification.java')
-rw-r--r--src/main/java/org/onap/dcaegen2/services/sonhms/NewPmNotification.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/main/java/org/onap/dcaegen2/services/sonhms/NewPmNotification.java b/src/main/java/org/onap/dcaegen2/services/sonhms/NewPmNotification.java
index ce583dd..374e615 100644
--- a/src/main/java/org/onap/dcaegen2/services/sonhms/NewPmNotification.java
+++ b/src/main/java/org/onap/dcaegen2/services/sonhms/NewPmNotification.java
@@ -27,29 +27,29 @@ import org.springframework.stereotype.Component;
@Component
public class NewPmNotification {
-
+
private Boolean newNotif;
-
+
@PostConstruct
public void init() {
- newNotif=false;
+ newNotif = false;
}
public Boolean getNewNotif() {
- return newNotif;
- }
+ return newNotif;
+ }
public void setNewNotif(Boolean newNotif) {
- this.newNotif = newNotif;
+ this.newNotif = newNotif;
}
- public NewPmNotification(Boolean newNotif) {
+ public NewPmNotification(Boolean newNotif) {
super();
this.newNotif = newNotif;
}
-
+
public NewPmNotification() {
-
+
}
}