1 /// Copyright 2016 by Samsung Electronics, Inc.,
3 /// This software is the confidential and proprietary information
4 /// of Samsung Electronics, Inc. ("Confidential Information"). You
5 /// shall not disclose such Confidential Information and shall use
6 /// it only in accordance with the terms of the license agreement
7 /// you entered into with Samsung.
11 namespace Tizen.Network.IoTConnectivity
14 /// Enumeration for policy which can be held in a resource.
17 public enum ResourcePolicy
20 /// Indicates resource uninitialized
24 /// Indicates resource that is allowed to be discovered
26 Discoverable = (1 << 0),
28 /// Indicates resource that is allowed to be observed
30 Observable = (1 << 1),
32 /// Indicates resource initialized and activated
36 /// Indicates resource which takes some delay to respond
40 /// Indicates secure resource
44 /// When this bit is set, the resource is allowed to be discovered only if discovery request contains an explicit querystring.
46 ExplicitDiscoverable = (1 << 5),