use of org.eclipse.milo.opcua.sdk.client.model.nodes.variables.PropertyTypeNode in project milo by eclipse.
the class TransparentRedundancyTypeNode method setCurrentServerId.
@Override
public void setCurrentServerId(String currentServerId) throws UaException {
PropertyTypeNode node = getCurrentServerIdNode();
node.setValue(new Variant(currentServerId));
}
use of org.eclipse.milo.opcua.sdk.client.model.nodes.variables.PropertyTypeNode in project milo by eclipse.
the class FileTypeNode method setMimeType.
@Override
public void setMimeType(String mimeType) throws UaException {
PropertyTypeNode node = getMimeTypeNode();
node.setValue(new Variant(mimeType));
}
use of org.eclipse.milo.opcua.sdk.client.model.nodes.variables.PropertyTypeNode in project milo by eclipse.
the class FileTypeNode method setOpenCount.
@Override
public void setOpenCount(UShort openCount) throws UaException {
PropertyTypeNode node = getOpenCountNode();
node.setValue(new Variant(openCount));
}
use of org.eclipse.milo.opcua.sdk.client.model.nodes.variables.PropertyTypeNode in project milo by eclipse.
the class GeneralModelChangeEventTypeNode method setChanges.
@Override
public void setChanges(ModelChangeStructureDataType[] changes) throws UaException {
PropertyTypeNode node = getChangesNode();
ExtensionObject[] encoded = ExtensionObject.encodeArray(client.getStaticSerializationContext(), changes);
node.setValue(new Variant(encoded));
}
use of org.eclipse.milo.opcua.sdk.client.model.nodes.variables.PropertyTypeNode in project milo by eclipse.
the class CertificateUpdatedAuditEventTypeNode method setCertificateType.
@Override
public void setCertificateType(NodeId certificateType) throws UaException {
PropertyTypeNode node = getCertificateTypeNode();
node.setValue(new Variant(certificateType));
}
Aggregations