/* * 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.NodeId; import com.digitalpetri.opcua.stack.core.types.builtin.unsigned.UInteger; @UaDataType("AttributeOperand") public class AttributeOperand extends FilterOperand { public static final NodeId TypeId = Identifiers.AttributeOperand; public static final NodeId BinaryEncodingId = Identifiers.AttributeOperand_Encoding_DefaultBinary; public static final NodeId XmlEncodingId = Identifiers.AttributeOperand_Encoding_DefaultXml; protected final NodeId _nodeId; protected final String _alias; protected final RelativePath _browsePath; protected final UInteger _attributeId; protected final String _indexRange; public AttributeOperand() { super(); this._nodeId = null; this._alias = null; this._browsePath = null; this._attributeId = null; this._indexRange = null; } public AttributeOperand(NodeId _nodeId, String _alias, RelativePath _browsePath, UInteger _attributeId, String _indexRange) { super(); this._nodeId = _nodeId; this._alias = _alias; this._browsePath = _browsePath; this._attributeId = _attributeId; this._indexRange = _indexRange; } public NodeId getNodeId() { return _nodeId; } public String getAlias() { return _alias; } public RelativePath getBrowsePath() { return _browsePath; } public UInteger getAttributeId() { return _attributeId; } public String getIndexRange() { return _indexRange; } @Override public NodeId getTypeId() { return TypeId; } @Override public NodeId getBinaryEncodingId() { return BinaryEncodingId; } @Override public NodeId getXmlEncodingId() { return XmlEncodingId; } public static void encode(AttributeOperand attributeOperand, UaEncoder encoder) { encoder.encodeNodeId("NodeId", attributeOperand._nodeId); encoder.encodeString("Alias", attributeOperand._alias); encoder.encodeSerializable("BrowsePath", attributeOperand._browsePath != null ? attributeOperand._browsePath : new RelativePath()); encoder.encodeUInt32("AttributeId", attributeOperand._attributeId); encoder.encodeString("IndexRange", attributeOperand._indexRange); } public static AttributeOperand decode(UaDecoder decoder) { NodeId _nodeId = decoder.decodeNodeId("NodeId"); String _alias = decoder.decodeString("Alias"); RelativePath _browsePath = decoder.decodeSerializable("BrowsePath", RelativePath.class); UInteger _attributeId = decoder.decodeUInt32("AttributeId"); String _indexRange = decoder.decodeString("IndexRange"); return new AttributeOperand(_nodeId, _alias, _browsePath, _attributeId, _indexRange); } static { DelegateRegistry.registerEncoder(AttributeOperand::encode, AttributeOperand.class, BinaryEncodingId, XmlEncodingId); DelegateRegistry.registerDecoder(AttributeOperand::decode, AttributeOperand.class, BinaryEncodingId, XmlEncodingId); } }