Java SDK and Eclipse plugin for simulator.
[platform/upstream/iotivity.git] / service / simulator / java / sdk / src / org / oic / simulator / clientcontroller / IVerificationListener.java
index 3b582c6..1114f6b 100644 (file)
  * limitations under the License.
  */
 
-/**
- * This file provides interface for verification callback information.
- */
 package org.oic.simulator.clientcontroller;
 
 /**
- * An OnVerificationListener can be registered via the resource
- * startVerification call. Event listeners are notified asynchronously.
+ * Interface for receiving the verification status via callback. An
+ * IVerificationListener can be registered via the resource startVerification
+ * call. Event listeners are notified asynchronously.
  */
 public interface IVerificationListener {
+    /**
+     * Called when the verification request is accepted and started.
+     * 
+     * @param uId
+     *            Unique Id of the resource.
+     * @param id
+     *            Verification Id.
+     */
     public void onVerificationStarted(String uId, int id);
 
+    /**
+     * Called when the verification is stopped before its completion.
+     * 
+     * @param uId
+     *            Unique Id of the resource.
+     * @param id
+     *            Verification Id.
+     */
     public void onVerificationAborted(String uId, int id);
 
+    /**
+     * Called when the verification is done.
+     * 
+     * @param uId
+     *            Unique Id of the resource.
+     * @param id
+     *            Verification Id.
+     */
     public void onVerificationCompleted(String uId, int id);
-}
+}
\ No newline at end of file