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 / enums / ESCloudProvState.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.enums;
22
23 /**
24  * It defines various states of the cloud provisioning during easy setup process
25  */
26 public enum ESCloudProvState {
27
28     /**
29      * Some error occurs during cloud data provisioning
30      */
31     ES_CLOUD_PROVISIONING_ERROR(-1),
32
33     /**
34      * Cloud data provisioning is successfully done
35      */
36     ES_CLOUD_PROVISIONING_SUCCESS(0),
37
38     /**
39      * Target enrollee which needs a cloud provisioning is found in a network
40      */
41     ES_CLOUD_ENROLLEE_FOUND(1),
42
43     /**
44      * Target enrollee which needs a cloud provisioning is NOT found in a network
45      */
46     ES_CLOUD_ENROLLEE_NOT_FOUND(2);
47
48     private int value;
49
50     private ESCloudProvState(int value) {
51         this.value = value;
52     }
53
54     public int getValue() {
55         return value;
56     }
57
58     public static ESCloudProvState fromInt(int i) {
59         for (ESCloudProvState b : ESCloudProvState.values()) {
60             if (b.getValue() == i) { return b; }
61         }
62         return null;
63     }
64 };
65