Add APIs of cloud provisioning for Android and JNI layer
[platform/upstream/iotivity.git] / service / easy-setup / mediator / richsdk / android / EasySetupCore / src / main / java / org / iotivity / service / easysetup / mediator / ESResult.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 /**
24  * It defines an result during easy setup process, which is same as one in Easy Setup C++ SDK
25  */
26 public enum ESResult {
27     ES_ERROR(-1),
28     ES_OK(0),
29     ES_NETWORKFOUND(1),
30     ES_NETWORKCONNECTED(2),
31     ES_NETWORKNOTCONNECTED(3),
32     ES_RESOURCECREATED(11),
33     ES_RECVREQOFPROVRES(21),
34     ES_RECVREQOFNETRES(22),
35     ES_RECVUPDATEOFPROVRES(23),
36     ES_RECVTRIGGEROFPROVRES(24),
37     ES_UNAUTHORIZED(25);
38
39     private int value;
40
41     private ESResult(int value) {
42         this.value = value;
43     }
44
45         public int getValue() {
46         return value;
47     }
48
49         public static ESResult fromInt(int i) {
50         for (ESResult b : ESResult.values()) {
51             if (b.getValue() == i) { return b; }
52         }
53         return null;
54     }
55 };