/* * 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.serialization.UaStructure; 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.UByte; @UaDataType("AggregateConfiguration") public class AggregateConfiguration implements UaStructure { public static final NodeId TypeId = Identifiers.AggregateConfiguration; public static final NodeId BinaryEncodingId = Identifiers.AggregateConfiguration_Encoding_DefaultBinary; public static final NodeId XmlEncodingId = Identifiers.AggregateConfiguration_Encoding_DefaultXml; protected final Boolean _useServerCapabilitiesDefaults; protected final Boolean _treatUncertainAsBad; protected final UByte _percentDataBad; protected final UByte _percentDataGood; protected final Boolean _useSlopedExtrapolation; public AggregateConfiguration() { this._useServerCapabilitiesDefaults = null; this._treatUncertainAsBad = null; this._percentDataBad = null; this._percentDataGood = null; this._useSlopedExtrapolation = null; } public AggregateConfiguration(Boolean _useServerCapabilitiesDefaults, Boolean _treatUncertainAsBad, UByte _percentDataBad, UByte _percentDataGood, Boolean _useSlopedExtrapolation) { this._useServerCapabilitiesDefaults = _useServerCapabilitiesDefaults; this._treatUncertainAsBad = _treatUncertainAsBad; this._percentDataBad = _percentDataBad; this._percentDataGood = _percentDataGood; this._useSlopedExtrapolation = _useSlopedExtrapolation; } public Boolean getUseServerCapabilitiesDefaults() { return _useServerCapabilitiesDefaults; } public Boolean getTreatUncertainAsBad() { return _treatUncertainAsBad; } public UByte getPercentDataBad() { return _percentDataBad; } public UByte getPercentDataGood() { return _percentDataGood; } public Boolean getUseSlopedExtrapolation() { return _useSlopedExtrapolation; } @Override public NodeId getTypeId() { return TypeId; } @Override public NodeId getBinaryEncodingId() { return BinaryEncodingId; } @Override public NodeId getXmlEncodingId() { return XmlEncodingId; } public static void encode(AggregateConfiguration aggregateConfiguration, UaEncoder encoder) { encoder.encodeBoolean("UseServerCapabilitiesDefaults", aggregateConfiguration._useServerCapabilitiesDefaults); encoder.encodeBoolean("TreatUncertainAsBad", aggregateConfiguration._treatUncertainAsBad); encoder.encodeByte("PercentDataBad", aggregateConfiguration._percentDataBad); encoder.encodeByte("PercentDataGood", aggregateConfiguration._percentDataGood); encoder.encodeBoolean("UseSlopedExtrapolation", aggregateConfiguration._useSlopedExtrapolation); } public static AggregateConfiguration decode(UaDecoder decoder) { Boolean _useServerCapabilitiesDefaults = decoder.decodeBoolean("UseServerCapabilitiesDefaults"); Boolean _treatUncertainAsBad = decoder.decodeBoolean("TreatUncertainAsBad"); UByte _percentDataBad = decoder.decodeByte("PercentDataBad"); UByte _percentDataGood = decoder.decodeByte("PercentDataGood"); Boolean _useSlopedExtrapolation = decoder.decodeBoolean("UseSlopedExtrapolation"); return new AggregateConfiguration(_useServerCapabilitiesDefaults, _treatUncertainAsBad, _percentDataBad, _percentDataGood, _useSlopedExtrapolation); } static { DelegateRegistry.registerEncoder(AggregateConfiguration::encode, AggregateConfiguration.class, BinaryEncodingId, XmlEncodingId); DelegateRegistry.registerDecoder(AggregateConfiguration::decode, AggregateConfiguration.class, BinaryEncodingId, XmlEncodingId); } }