Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
opcua-asyncio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nikola Balog
opcua-asyncio
Commits
94a2bb42
Commit
94a2bb42
authored
May 31, 2016
by
olivier R-D
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix attribute types
parent
ef863c61
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
opcua/server/address_space.py
opcua/server/address_space.py
+4
-4
No files found.
opcua/server/address_space.py
View file @
94a2bb42
...
@@ -374,7 +374,7 @@ class NodeManagementService(object):
...
@@ -374,7 +374,7 @@ class NodeManagementService(object):
def
_add_nodeattributes
(
self
,
item
,
nodedata
):
def
_add_nodeattributes
(
self
,
item
,
nodedata
):
self
.
_add_node_attr
(
item
,
nodedata
,
"AccessLevel"
,
ua
.
VariantType
.
Byte
)
self
.
_add_node_attr
(
item
,
nodedata
,
"AccessLevel"
,
ua
.
VariantType
.
Byte
)
self
.
_add_node_attr
(
item
,
nodedata
,
"ArrayDimensions"
,
ua
.
VariantType
.
Int32
)
self
.
_add_node_attr
(
item
,
nodedata
,
"ArrayDimensions"
,
ua
.
VariantType
.
U
Int32
)
self
.
_add_node_attr
(
item
,
nodedata
,
"BrowseName"
,
ua
.
VariantType
.
QualifiedName
)
self
.
_add_node_attr
(
item
,
nodedata
,
"BrowseName"
,
ua
.
VariantType
.
QualifiedName
)
self
.
_add_node_attr
(
item
,
nodedata
,
"ContainsNoLoops"
,
ua
.
VariantType
.
Boolean
)
self
.
_add_node_attr
(
item
,
nodedata
,
"ContainsNoLoops"
,
ua
.
VariantType
.
Boolean
)
self
.
_add_node_attr
(
item
,
nodedata
,
"DataType"
,
ua
.
VariantType
.
NodeId
)
self
.
_add_node_attr
(
item
,
nodedata
,
"DataType"
,
ua
.
VariantType
.
NodeId
)
...
@@ -390,11 +390,11 @@ class NodeManagementService(object):
...
@@ -390,11 +390,11 @@ class NodeManagementService(object):
self
.
_add_node_attr
(
item
,
nodedata
,
"NodeId"
,
ua
.
VariantType
.
NodeId
)
self
.
_add_node_attr
(
item
,
nodedata
,
"NodeId"
,
ua
.
VariantType
.
NodeId
)
self
.
_add_node_attr
(
item
,
nodedata
,
"Symmetric"
,
ua
.
VariantType
.
Boolean
)
self
.
_add_node_attr
(
item
,
nodedata
,
"Symmetric"
,
ua
.
VariantType
.
Boolean
)
self
.
_add_node_attr
(
item
,
nodedata
,
"UserAccessLevel"
,
ua
.
VariantType
.
Byte
)
self
.
_add_node_attr
(
item
,
nodedata
,
"UserAccessLevel"
,
ua
.
VariantType
.
Byte
)
self
.
_add_node_attr
(
item
,
nodedata
,
"UserExecutable"
,
ua
.
VariantType
.
B
yte
)
self
.
_add_node_attr
(
item
,
nodedata
,
"UserExecutable"
,
ua
.
VariantType
.
B
oolean
)
self
.
_add_node_attr
(
item
,
nodedata
,
"UserWriteMask"
,
ua
.
VariantType
.
Byte
)
self
.
_add_node_attr
(
item
,
nodedata
,
"UserWriteMask"
,
ua
.
VariantType
.
Byte
)
self
.
_add_node_attr
(
item
,
nodedata
,
"ValueRank"
,
ua
.
VariantType
.
Int32
)
self
.
_add_node_attr
(
item
,
nodedata
,
"ValueRank"
,
ua
.
VariantType
.
Int32
)
self
.
_add_node_attr
(
item
,
nodedata
,
"WriteMask"
,
ua
.
VariantType
.
Byte
)
self
.
_add_node_attr
(
item
,
nodedata
,
"WriteMask"
,
ua
.
VariantType
.
UInt32
)
self
.
_add_node_attr
(
item
,
nodedata
,
"UserWriteMask"
,
ua
.
VariantType
.
Byte
)
self
.
_add_node_attr
(
item
,
nodedata
,
"UserWriteMask"
,
ua
.
VariantType
.
UInt32
)
self
.
_add_node_attr
(
item
,
nodedata
,
"Value"
)
self
.
_add_node_attr
(
item
,
nodedata
,
"Value"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment