Refactoring of EasySetup Android implementation
[platform/upstream/iotivity.git] / service / easy-setup / sdk / mediator / android / EasySetupCore / src / main / java / org / iotivity / service / easysetup / mediator / IOnBoardingStatus.java
old mode 100644 (file)
new mode 100755 (executable)
index a7bc24d..403721d
  ******************************************************************/
 package org.iotivity.service.easysetup.mediator;
 
-import org.iotivity.service.easysetup.mediator.common.EnrolleeDevice;
+import java.util.ArrayList;
+
+import org.iotivity.service.easysetup.mediator.EnrolleeInfo;
 
 public interface IOnBoardingStatus {
 
     /**
      * Interface called when the scan method finishes. Network operations should
      * not execute on UI thread
-     * 
-     * @param enrolleeDevice
-     *            of {@link EnrolleeDevice}
+     *
+     * @param clients
+     *            of {@link EnrolleeInfo}
      */
 
-    public void deviceOnBoardingStatus(EnrolleeDevice enrolleeDevice);
+    public void deviceOnBoardingStatus(EnrolleeInfo clients);
 
 }