Format java POLICY-SDK-APP
[policy/engine.git] / POLICY-SDK-APP / src / main / java / org / onap / policy / dao / SystemLogDbDao.java
index 9cc6314..3c3f4d3 100644 (file)
@@ -2,7 +2,7 @@
  * ============LICENSE_START=======================================================
  * ONAP Policy Engine
  * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017, 2019 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 package org.onap.policy.dao;
 
-
 import java.util.List;
 
 import org.onap.policy.rest.jpa.SystemLogDB;
 
-
-
 public abstract interface SystemLogDbDao {
-       public abstract List<SystemLogDB> getLoggingData();
-       public abstract List<SystemLogDB> getSystemAlertData();
+    public abstract List<SystemLogDB> getLoggingData();
+
+    public abstract List<SystemLogDB> getSystemAlertData();
 }