aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/components/distribution/engine/INotificationHandler.java
blob: a1936c61dd6c47f8ca9678fd9d7d1f63ea58e39b (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.openecomp.sdc.be.components.distribution.engine;

public interface INotificationHandler {
    /**
     * Allows to handle received topic message
     * @param notification
     * @return true if finished successfully otherwise false
     */
    public boolean handleMessage(String notification);

}