Imported Upstream version 1.2.0
[platform/upstream/iotivity.git] / service / easy-setup / mediator / richsdk / android / EasySetupCore / src / main / java / org / iotivity / service / easysetup / mediator / GetConfigurationCallback.java
@@ -1,37 +1,39 @@
 /**
  * ***************************************************************
- * <p>
- * Copyright 2015 Samsung Electronics All Rights Reserved.
- * <p>
- * <p>
- * <p>
+ *
+ * Copyright 2016 Samsung Electronics All Rights Reserved.
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * <p>
+ *
  * http://www.apache.org/licenses/LICENSE-2.0
- * <p>
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * <p>
+ *
  * ****************************************************************
  */
 
 package org.iotivity.service.easysetup.mediator;
 
 /**
- * This class defines constants for Errors comes during Easy setup process
+ * This interface class is used as a callback function called after receiving
+ * Enrollee's configuration.
+ *
+ * @see GetConfigurationStatus
  */
-public enum EnrolleeSetupError {
-    /**
-     * Device setup successful
-     */
-    DEVICE_SETUP_SUCCESSFUL,
+public abstract class GetConfigurationCallback {
+
     /**
-     * Device setup failed
+     * Called after receiving Enrollee's configuration
+     *
+     * @param status
+     *          result if the request succeeds or fails
+     *          Enrollee's configuration like supported WiFi freq and device name
      */
-    DEVICE_SETUP_FAILED,
+    public abstract void onProgress(GetConfigurationStatus status);
 }