Sync Integ to Master
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / components / distribution / engine / INotificationHandler.java
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 }