a1936c61dd6c47f8ca9678fd9d7d1f63ea58e39b
[sdc.git] /
1 package org.openecomp.sdc.be.components.distribution.engine;
2
3 public interface INotificationHandler {
4     /**
5      * Allows to handle received topic message
6      * @param notification
7      * @return true if finished successfully otherwise false
8      */
9     public boolean handleMessage(String notification);
10
11 }