Updating Simulator Java API project with the following changes.
[platform/upstream/iotivity.git] / service / simulator / java / sdk / src / org / oic / simulator / clientcontroller / IPostListener.java
index e88b98e..1b4ddcb 100644 (file)
  */
 package org.oic.simulator.clientcontroller;
 
-import org.oic.simulator.serviceprovider.SimulatorResourceModel;
+import org.oic.simulator.SimulatorResourceModel;
 
 /**
  * An OnPostListener can be registered via the resource post call. Event
  * listeners are notified asynchronously
  */
 public interface IPostListener {
-    public void onPostCompleted(SimulatorResourceModel representation);
+    public void onPostCompleted(String uId,
+            SimulatorResourceModel representation);
 
     public void onPostFailed(Throwable ex);
 }