Updating Simulator Java API project with the following changes.
[platform/upstream/iotivity.git] / service / simulator / java / sdk / src / org / oic / simulator / clientcontroller / IGetListener.java
index 32abac6..24f89a4 100644 (file)
  */
 package org.oic.simulator.clientcontroller;
 
-import org.oic.simulator.serviceprovider.SimulatorResourceModel;
+import org.oic.simulator.SimulatorResourceModel;
 
 /**
  * An OnGetListener can be registered via the resource get call. Event listeners
  * are notified asynchronously
  */
 public interface IGetListener {
-    public void onGetCompleted(SimulatorResourceModel representation);
+    public void onGetCompleted(String uId, SimulatorResourceModel representation);
 
     public void onGetFailed(Throwable ex);
 }