Imported Upstream version 1.0.1
[platform/upstream/iotivity.git] / service / simulator / java / sdk / src / org / oic / simulator / clientcontroller / IVerificationListener.java
1 /*
2  * Copyright 2015 Samsung Electronics All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.oic.simulator.clientcontroller;
18
19 /**
20  * Interface for receiving the verification status via callback. An
21  * IVerificationListener can be registered via the resource startVerification
22  * call. Event listeners are notified asynchronously.
23  */
24 public interface IVerificationListener {
25     /**
26      * Called when the verification request is accepted and started.
27      *
28      * @param uId
29      *            Unique Id of the resource.
30      * @param id
31      *            Verification Id.
32      */
33     public void onVerificationStarted(String uId, int id);
34
35     /**
36      * Called when the verification is stopped before its completion.
37      *
38      * @param uId
39      *            Unique Id of the resource.
40      * @param id
41      *            Verification Id.
42      */
43     public void onVerificationAborted(String uId, int id);
44
45     /**
46      * Called when the verification is done.
47      *
48      * @param uId
49      *            Unique Id of the resource.
50      * @param id
51      *            Verification Id.
52      */
53     public void onVerificationCompleted(String uId, int id);
54 }