Merge branch 'notification-service'
[platform/upstream/iotivity.git] / service / easy-setup / mediator / richsdk / android / EasySetupCore / src / main / java / org / iotivity / service / easysetup / mediator / GetEnrolleeStatus.java
1 /**
2  * ***************************************************************
3  *
4  * Copyright 2016 Samsung Electronics All Rights Reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * ****************************************************************
19  */
20
21 package org.iotivity.service.easysetup.mediator;
22
23 import org.iotivity.service.easysetup.mediator.enums.ESResult;
24
25 /**
26  * This class indicates a result if a getConfiguartion API succeed or fails and
27  * Enrollee's configuration delivered by a response.
28  */
29 public class GetEnrolleeStatus
30 {
31     private ESResult mResult;
32     private EnrolleeStatus mEnrolleeStatus;
33
34     /**
35      * Constructor
36      *
37      * @param result a result if a getStatus API succeed or fail
38      * @param status Enrollee's status
39      *
40      */
41     public GetEnrolleeStatus(int result, EnrolleeStatus status)
42     {
43         mResult = ESResult.fromInt(result);
44         mEnrolleeStatus = status;
45     }
46
47     /**
48      * Get a result of a getStatus API call
49      *
50      * @return ESResult
51      *
52      */
53     public ESResult getESResult()
54     {
55         return mResult;
56     }
57
58     /**
59      * Get Enrollee's status
60      *
61      * @return EnrolleeStatus includes a provisioning status and last error code.
62      *
63      * @see EnrolleeStatus
64      */
65     public EnrolleeStatus getEnrolleeStatus()
66     {
67         return mEnrolleeStatus;
68     }
69 };