/* * Copyright 2015 Kevin Herron * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.digitalpetri.opcua.stack.core.types.structured; import com.digitalpetri.opcua.stack.core.Identifiers; import com.digitalpetri.opcua.stack.core.serialization.DelegateRegistry; import com.digitalpetri.opcua.stack.core.serialization.UaDecoder; import com.digitalpetri.opcua.stack.core.serialization.UaEncoder; import com.digitalpetri.opcua.stack.core.types.UaDataType; import com.digitalpetri.opcua.stack.core.types.builtin.LocalizedText; import com.digitalpetri.opcua.stack.core.types.builtin.NodeId; import com.digitalpetri.opcua.stack.core.types.builtin.QualifiedName; import com.digitalpetri.opcua.stack.core.types.builtin.unsigned.UByte; import com.digitalpetri.opcua.stack.core.types.builtin.unsigned.UInteger; import com.digitalpetri.opcua.stack.core.types.enumerated.NodeClass; @UaDataType("ObjectNode") public class ObjectNode extends InstanceNode { public static final NodeId TypeId = Identifiers.ObjectNode; public static final NodeId BinaryEncodingId = Identifiers.ObjectNode_Encoding_DefaultBinary; public static final NodeId XmlEncodingId = Identifiers.ObjectNode_Encoding_DefaultXml; protected final UByte _eventNotifier; public ObjectNode() { super(null, null, null, null, null, null, null, null); this._eventNotifier = null; } public ObjectNode(NodeId _nodeId, NodeClass _nodeClass, QualifiedName _browseName, LocalizedText _displayName, LocalizedText _description, UInteger _writeMask, UInteger _userWriteMask, ReferenceNode[] _references, UByte _eventNotifier) { super(_nodeId, _nodeClass, _browseName, _displayName, _description, _writeMask, _userWriteMask, _references); this._eventNotifier = _eventNotifier; } public UByte getEventNotifier() { return _eventNotifier; } @Override public NodeId getTypeId() { return TypeId; } @Override public NodeId getBinaryEncodingId() { return BinaryEncodingId; } @Override public NodeId getXmlEncodingId() { return XmlEncodingId; } public static void encode(ObjectNode objectNode, UaEncoder encoder) { encoder.encodeNodeId("NodeId", objectNode._nodeId); encoder.encodeEnumeration("NodeClass", objectNode._nodeClass); encoder.encodeQualifiedName("BrowseName", objectNode._browseName); encoder.encodeLocalizedText("DisplayName", objectNode._displayName); encoder.encodeLocalizedText("Description", objectNode._description); encoder.encodeUInt32("WriteMask", objectNode._writeMask); encoder.encodeUInt32("UserWriteMask", objectNode._userWriteMask); encoder.encodeArray("References", objectNode._references, encoder::encodeSerializable); encoder.encodeByte("EventNotifier", objectNode._eventNotifier); } public static ObjectNode decode(UaDecoder decoder) { NodeId _nodeId = decoder.decodeNodeId("NodeId"); NodeClass _nodeClass = decoder.decodeEnumeration("NodeClass", NodeClass.class); QualifiedName _browseName = decoder.decodeQualifiedName("BrowseName"); LocalizedText _displayName = decoder.decodeLocalizedText("DisplayName"); LocalizedText _description = decoder.decodeLocalizedText("Description"); UInteger _writeMask = decoder.decodeUInt32("WriteMask"); UInteger _userWriteMask = decoder.decodeUInt32("UserWriteMask"); ReferenceNode[] _references = decoder.decodeArray("References", decoder::decodeSerializable, ReferenceNode.class); UByte _eventNotifier = decoder.decodeByte("EventNotifier"); return new ObjectNode(_nodeId, _nodeClass, _browseName, _displayName, _description, _writeMask, _userWriteMask, _references, _eventNotifier); } static { DelegateRegistry.registerEncoder(ObjectNode::encode, ObjectNode.class, BinaryEncodingId, XmlEncodingId); DelegateRegistry.registerDecoder(ObjectNode::decode, ObjectNode.class, BinaryEncodingId, XmlEncodingId); } }