Updating Simulator Java API project with the following changes.
[platform/upstream/iotivity.git] / service / simulator / java / sdk / src / org / oic / simulator / IAutomation.java
index 4908b37..4dbe18e 100644 (file)
 package org.oic.simulator;
 
 /**
- * Interface for receiving automation complete notifications.
- * 
- * @param resourceURI
- *            URI of the resource on which the automation has occurred.
- * @param automationId
- *            Unique Id of the automation.
+ * Interface for receiving notifications on completion of automation.
  */
 public interface IAutomation {
+    /**
+     * Callback method for receiving automation complete notifications.
+     * 
+     * @param resourceURI
+     *            URI of the resource on which the automation has occurred.
+     * @param automationId
+     *            Unique Id of the automation.
+     */
     public void onAutomationComplete(String resourceURI, int automationId);
 }