Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IoTConcentrator.cs
1using System;
2
4{
8 public static class IoTConcentrator
9 {
13 public const string Namespace = "urn:nf:iot:concentrator:1.0:";
14
18 public static readonly Uri DataSource = new Uri(Namespace + "DataSource");
19
23 public static readonly Uri Node = new Uri(Namespace + "Node");
24
28 public static readonly Uri HasChildSource = new Uri(Namespace + "hasChildSource");
29
33 public static readonly Uri ChildSource = new Uri(Namespace + "childSource");
34
38 public static readonly Uri RootNode = new Uri(Namespace + "rootNode");
39
43 public static readonly Uri ChildNode = new Uri(Namespace + "childNode");
44
48 public static readonly Uri ParentNode = new Uri(Namespace + "parentNode");
49
53 public static readonly Uri NodeId = new Uri(Namespace + "nodeId");
54
58 public static readonly Uri SourceId = new Uri(Namespace + "sourceId");
59
63 public static readonly Uri Partition = new Uri(Namespace + "partition");
64
68 public static readonly Uri LogId = new Uri(Namespace + "logId");
69
73 public static readonly Uri LocalId = new Uri(Namespace + "localId");
74
78 public static readonly Uri HasCommands = new Uri(Namespace + "hasCommands");
79
83 public static readonly Uri IsControllable = new Uri(Namespace + "isControllable");
84
88 public static readonly Uri IsReadable = new Uri(Namespace + "isReadable");
89
93 public static readonly Uri State = new Uri(Namespace + "state");
94
98 public static readonly Uri NodeState = new Uri(Namespace + "nodeState");
99
103 public static readonly Uri TypeName = new Uri(Namespace + "typeName");
104
108 public static readonly Uri Commands = new Uri(Namespace + "commands");
109
113 public static readonly Uri Command = new Uri(Namespace + "Command");
114
118 public static readonly Uri CommandId = new Uri(Namespace + "commandId");
119
123 public static readonly Uri CommandType = new Uri(Namespace + "commandType");
124
128 public static readonly Uri SortCategory = new Uri(Namespace + "sortCategory");
129
133 public static readonly Uri SortKey = new Uri(Namespace + "sortKey");
134
138 public static readonly Uri Success = new Uri(Namespace + "success");
139
143 public static readonly Uri Failure = new Uri(Namespace + "failure");
144
148 public static readonly Uri Confirmation = new Uri(Namespace + "confirmation");
149
153 public static readonly Uri DisplayableParameters = new Uri(Namespace + "dispParam");
154
158 public static readonly Uri ParameterId = new Uri(Namespace + "parameterId");
159
163 public static readonly Uri Messages = new Uri(Namespace + "messages");
164
168 public static readonly Uri EventId = new Uri(Namespace + "eventId");
169
173 public static readonly Uri Body = new Uri(Namespace + "body");
174
178 public static readonly Uri MessageType = new Uri(Namespace + "messageType");
179
183 public static readonly Uri Operations = new Uri(Namespace + "operations");
184
188 public static readonly Uri Edit = new Uri(Namespace + "edit");
189
193 public static readonly Uri Read = new Uri(Namespace + "read");
194
198 public static readonly Uri Control = new Uri(Namespace + "control");
199 }
200}
static readonly Uri Partition
urn:nf:iot:concentrator:1.0:partition
static readonly Uri Confirmation
urn:nf:iot:concentrator:1.0:confirmation
static readonly Uri ChildSource
urn:nf:iot:concentrator:1.0:childSource
static readonly Uri Success
urn:nf:iot:concentrator:1.0:success
static readonly Uri MessageType
urn:nf:iot:concentrator:1.0:messageType
static readonly Uri Control
urn:nf:iot:concentrator:1.0:control
static readonly Uri Failure
urn:nf:iot:concentrator:1.0:failure
static readonly Uri Body
urn:nf:iot:concentrator:1.0:body
static readonly Uri Command
urn:nf:iot:concentrator:1.0:Command
static readonly Uri LocalId
urn:nf:iot:concentrator:1.0:localId
const string Namespace
urn:nf:iot:concentrator:1.0:
static readonly Uri DisplayableParameters
urn:nf:iot:concentrator:1.0:dispParam
static readonly Uri IsControllable
urn:nf:iot:concentrator:1.0:isControllable
static readonly Uri ChildNode
urn:nf:iot:concentrator:1.0:childNode
static readonly Uri SourceId
urn:nf:iot:concentrator:1.0:sourceId
static readonly Uri Commands
urn:nf:iot:concentrator:1.0:commands
static readonly Uri Read
urn:nf:iot:concentrator:1.0:read
static readonly Uri Node
urn:nf:iot:concentrator:1.0:Node
static readonly Uri ParameterId
urn:nf:iot:concentrator:1.0:parameterId
static readonly Uri HasChildSource
urn:nf:iot:concentrator:1.0:hasChildSource
static readonly Uri RootNode
urn:nf:iot:concentrator:1.0:rootNode
static readonly Uri Messages
urn:nf:iot:concentrator:1.0:messages
static readonly Uri State
urn:nf:iot:concentrator:1.0:state
static readonly Uri ParentNode
urn:nf:iot:concentrator:1.0:parentNode
static readonly Uri Operations
urn:nf:iot:concentrator:1.0:operations
static readonly Uri DataSource
urn:nf:iot:concentrator:1.0:DataSource
static readonly Uri SortCategory
urn:nf:iot:concentrator:1.0:sortCategory
static readonly Uri Edit
urn:nf:iot:concentrator:1.0:edit
static readonly Uri TypeName
urn:nf:iot:concentrator:1.0:typeName
static readonly Uri CommandId
urn:nf:iot:concentrator:1.0:commandId
static readonly Uri EventId
urn:nf:iot:concentrator:1.0:eventId
static readonly Uri LogId
urn:nf:iot:concentrator:1.0:logId
static readonly Uri HasCommands
urn:nf:iot:concentrator:1.0:hasCommands
static readonly Uri IsReadable
urn:nf:iot:concentrator:1.0:isReadable
static readonly Uri SortKey
urn:nf:iot:concentrator:1.0:sortKey
static readonly Uri NodeId
urn:nf:iot:concentrator:1.0:nodeId
NodeState
State of a node.
Definition: INode.cs:13
CommandType
Command type.
Definition: ICommand.cs:11