Add license comment
[platform/upstream/iotivity.git] / service / easy-setup / mediator / richsdk / android / EasySetupCore / src / main / java / org / iotivity / service / easysetup / mediator / ESConstants.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 public class ESConstants {
24
25     public static final String OC_RSRVD_ES_PROVSTATUS = "ps";
26     public static final String OC_RSRVD_ES_LAST_ERRORCODE = "lec";
27     public static final String OC_RSRVD_ES_LINKS = "links";
28     public static final String OC_RSRVD_ES_SUPPORTEDWIFIMODE = "swmt";
29     public static final String OC_RSRVD_ES_SUPPORTEDWIFIFREQ = "swf";
30     public static final String OC_RSRVD_ES_SSID = "tnn";
31     public static final String OC_RSRVD_ES_CRED = "cd";
32     public static final String OC_RSRVD_ES_AUTHTYPE = "wat";
33     public static final String OC_RSRVD_ES_ENCTYPE = "wet";
34     public static final String OC_RSRVD_ES_AUTHCODE = "ac";
35     public static final String OC_RSRVD_ES_AUTHPROVIDER = "apn";
36     public static final String OC_RSRVD_ES_CISERVER = "cis";
37     public static final String OC_RSRVD_ES_SERVERID = "sid";
38     public static final String OC_RSRVD_ES_DEVNAME = "dn";
39     public static final String OC_RSRVD_ES_LANGUAGE = "lang";
40     public static final String OC_RSRVD_ES_COUNTRY = "ctry";
41     public static final String OC_RSRVD_ES_MODELNUMBER = "mnmo";
42     public static final String OC_RSRVD_ES_LOCATION = "loc";
43
44 /**
45 * Easysetup defined resoruce types and uris
46 */
47     public static final String OC_RSRVD_ES_RES_TYPE_PROV = "oic.wk.prov";
48     public static final String OC_RSRVD_ES_URI_PROV = "/ProvisioningResURI";
49     public static final String OC_RSRVD_ES_RES_TYPE_WIFI = "oic.wk.wifi";
50     public static final String OC_RSRVD_ES_URI_WIFI = "/WiFiProvisioningResURI";
51     public static final String OC_RSRVD_ES_RES_TYPE_CLOUDSERVER = "oic.wk.cloudserver";
52     public static final String OC_RSRVD_ES_URI_CLOUDSERVER = "/CloudServerProvisioningResURI";
53     public static final String OC_RSRVD_ES_RES_TYPE_DEVCONF = "oic.wk.devconf";
54     public static final String OC_RSRVD_ES_URI_DEVCONF = "/DevConfProvisioningResURI";
55
56 }