[SSM] Fix IOT-332, 333, 334 issues
[platform/upstream/iotivity.git] / service / soft-sensor-manager / SDK / java / org / iotivity / service / ssm / IReportReceiver.java
1 package org.iotivity.service.ssm;
2
3 public abstract class IReportReceiver {
4         public abstract void OnMessageReceived(String tag, String msg);
5 }