X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=PolicyEngineUtils%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fpolicy%2Fapi%2FPDPNotification.java;h=9ab5082812330accd47dc53f5a246a437fa41c81;hb=399fc3abc5aa64b25dbf1e4b795e66158f6da27b;hp=a88ec06cbb405aaaff47b9cba27ac1711ef587b4;hpb=94eaa7529fa3dd60eda311ac14da93b57f31f1e2;p=policy%2Fengine.git diff --git a/PolicyEngineUtils/src/main/java/org/onap/policy/api/PDPNotification.java b/PolicyEngineUtils/src/main/java/org/onap/policy/api/PDPNotification.java index a88ec06cb..9ab508281 100644 --- a/PolicyEngineUtils/src/main/java/org/onap/policy/api/PDPNotification.java +++ b/PolicyEngineUtils/src/main/java/org/onap/policy/api/PDPNotification.java @@ -24,29 +24,29 @@ import java.util.Collection; /** * Defines the Notification event sent from PDP to Client PEP. - * + * * @version 0.2 */ public interface PDPNotification { - /** - * Gets the Collection of {@link org.onap.policy.api.RemovedPolicy} objects received. - * - * @return the Collection which consists of RemovedPolicy objects. - */ - public Collection getRemovedPolicies(); - - /** - * Gets the Collection of {@link org.onap.policy.api.LoadedPolicy} objects receieved. - * - * @return the Collection which consists of UpdatedPolicy objects. - */ - public Collection getLoadedPolicies(); - - /** - * Gets the NotificationType of {@link org.onap.policy.api.NotificationType} received. - * - * @return NotificationType associated with this PDPNotification - */ - public NotificationType getNotificationType(); - + + /** + * Gets the Collection of {@link org.onap.policy.api.RemovedPolicy} objects received. + * + * @return the Collection which consists of RemovedPolicy objects. + */ + Collection getRemovedPolicies(); + + /** + * Gets the Collection of {@link org.onap.policy.api.LoadedPolicy} objects receieved. + * + * @return the Collection which consists of UpdatedPolicy objects. + */ + Collection getLoadedPolicies(); + + /** + * Gets the NotificationType of {@link org.onap.policy.api.NotificationType} received. + * + * @return NotificationType associated with this PDPNotification + */ + NotificationType getNotificationType(); }