Collection resource support in plugin UI.
[platform/upstream/iotivity.git] / service / simulator / java / eclipse-plugin / ServiceProviderPlugin / src / oic / simulator / serviceprovider / listener / IObserverListChangedUIListener.java
index 3beb52a..a3bde63 100644 (file)
 
 package oic.simulator.serviceprovider.listener;
 
+import oic.simulator.serviceprovider.model.Resource;
+
 /**
  * Interface through which the resource observer events are sent to the UI
  * listeners.
  */
 public interface IObserverListChangedUIListener {
-    public void onObserverListChanged(String resourceURI);
+    public void onObserverListChanged(Resource resource);
 }