use of org.eclipse.milo.opcua.sdk.client.model.nodes.variables.PropertyTypeNode in project milo by eclipse.
the class ServerConfigurationTypeNode method setServerCapabilities.
@Override
public void setServerCapabilities(String[] serverCapabilities) throws UaException {
PropertyTypeNode node = getServerCapabilitiesNode();
node.setValue(new Variant(serverCapabilities));
}
use of org.eclipse.milo.opcua.sdk.client.model.nodes.variables.PropertyTypeNode in project milo by eclipse.
the class ServerRedundancyTypeNode method setRedundancySupport.
@Override
public void setRedundancySupport(RedundancySupport redundancySupport) throws UaException {
PropertyTypeNode node = getRedundancySupportNode();
node.setValue(new Variant(redundancySupport));
}
use of org.eclipse.milo.opcua.sdk.client.model.nodes.variables.PropertyTypeNode in project milo by eclipse.
the class ServerDiagnosticsTypeNode method setEnabledFlag.
@Override
public void setEnabledFlag(Boolean enabledFlag) throws UaException {
PropertyTypeNode node = getEnabledFlagNode();
node.setValue(new Variant(enabledFlag));
}
use of org.eclipse.milo.opcua.sdk.client.model.nodes.variables.PropertyTypeNode in project milo by eclipse.
the class ServerCapabilitiesTypeNode method setSoftwareCertificates.
@Override
public void setSoftwareCertificates(SignedSoftwareCertificate[] softwareCertificates) throws UaException {
PropertyTypeNode node = getSoftwareCertificatesNode();
ExtensionObject[] encoded = ExtensionObject.encodeArray(client.getStaticSerializationContext(), softwareCertificates);
node.setValue(new Variant(encoded));
}
use of org.eclipse.milo.opcua.sdk.client.model.nodes.variables.PropertyTypeNode in project milo by eclipse.
the class NonTransparentNetworkRedundancyTypeNode method setServerNetworkGroups.
@Override
public void setServerNetworkGroups(NetworkGroupDataType[] serverNetworkGroups) throws UaException {
PropertyTypeNode node = getServerNetworkGroupsNode();
ExtensionObject[] encoded = ExtensionObject.encodeArray(client.getStaticSerializationContext(), serverNetworkGroups);
node.setValue(new Variant(encoded));
}
Aggregations