public class CertificateGroupTypeNode extends BaseObjectTypeNode implements CertificateGroupType
CERTIFICATE_TYPES| Constructor and Description |
|---|
CertificateGroupTypeNode(OpcUaClient client,
org.eclipse.milo.opcua.stack.core.types.builtin.NodeId nodeId,
org.eclipse.milo.opcua.stack.core.types.enumerated.NodeClass nodeClass,
org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName browseName,
org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText displayName,
org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText description,
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger writeMask,
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger userWriteMask,
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte eventNotifier) |
| Modifier and Type | Method and Description |
|---|---|
org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] |
getCertificateTypes()
Get the local value of the CertificateTypes Node.
|
PropertyTypeNode |
getCertificateTypesNode()
Get the CertificateTypes
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyTypeNode> |
getCertificateTypesNodeAsync()
Asynchronous implementation of
CertificateGroupType.getCertificateTypesNode(). |
TrustListTypeNode |
getTrustListNode()
Get the TrustList
TrustListType Node, or null if it does not exist. |
CompletableFuture<? extends TrustListTypeNode> |
getTrustListNodeAsync()
Asynchronous implementation of
CertificateGroupType.getTrustListNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] |
readCertificateTypes()
Read the value of the CertificateTypes Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[]> |
readCertificateTypesAsync()
An asynchronous implementation of
CertificateGroupType.readCertificateTypes(). |
void |
setCertificateTypes(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] certificateTypes)
Set the local value of the CertificateTypes Node.
|
void |
writeCertificateTypes(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] certificateTypes)
Write a new value for the CertificateTypes Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeCertificateTypesAsync(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] certificateTypes)
An asynchronous implementation of
CertificateGroupType.writeCertificateTypes(NodeId[]). |
callMethod, callMethod, callMethodAsync, callMethodAsync, getAttributeValue, getEventNotifier, getIcon, getMethod, getMethod, getMethodAsync, getMethodAsync, getNamingRuleAsync, getNodeVersion, getObjectComponent, getObjectComponent, getObjectComponent, getObjectComponentAsync, getObjectComponentAsync, getObjectComponentAsync, getTypeDefinition, getTypeDefinitionAsync, getVariableComponent, getVariableComponent, getVariableComponent, getVariableComponentAsync, getVariableComponentAsync, getVariableComponentAsync, readEventNotifier, setAttributeValue, setEventNotifier, setIcon, setNamingRuleAsync, setNodeVersion, writeEventNotifierbrowse, browse, browseAsync, browseAsync, browseNodes, browseNodes, browseNodesAsync, browseNodesAsync, canonicalize, cast, findMemberNodeId, getBrowseName, getComponentAsync, getDescription, getDisplayName, getMemberNodeAsync, getNodeClass, getNodeId, getProperty, getPropertyNodeAsync, getPropertyNodeAsync, getUserWriteMask, getWriteMask, invalidate, readAttribute, readAttributeAsync, readBrowseName, readDescription, readDisplayName, readNamespaceIndex, readNodeClass, readNodeId, readProperty, readUserWriteMask, readWriteMask, refresh, refreshAsync, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setProperty, setUserWriteMask, setWriteMask, synchronize, synchronizeAsync, writeAttribute, writeAttributeAsync, writeBrowseName, writeDescription, writeDisplayName, writeNodeClass, writeNodeId, writeProperty, writeUserWriteMask, writeWriteMaskclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetEventNotifier, setEventNotifiergetBrowseName, getDescription, getDisplayName, getNodeClass, getNodeId, getUserWriteMask, getWriteMask, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setUserWriteMask, setWriteMaskpublic CertificateGroupTypeNode(OpcUaClient client, org.eclipse.milo.opcua.stack.core.types.builtin.NodeId nodeId, org.eclipse.milo.opcua.stack.core.types.enumerated.NodeClass nodeClass, org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName browseName, org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText displayName, org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText description, org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger writeMask, org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger userWriteMask, org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte eventNotifier)
public org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] getCertificateTypes()
throws org.eclipse.milo.opcua.stack.core.UaException
CertificateGroupTypeThe returned value is the last seen; it is not read live from the server.
getCertificateTypes in interface CertificateGroupTypeorg.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the CertificateTypes Node.public void setCertificateTypes(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] certificateTypes)
throws org.eclipse.milo.opcua.stack.core.UaException
CertificateGroupTypeThe value is only updated locally; it is not written to the server.
setCertificateTypes in interface CertificateGroupTypecertificateTypes - the local value to set for the CertificateTypes Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the CertificateTypes Node.public org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] readCertificateTypes()
throws org.eclipse.milo.opcua.stack.core.UaException
CertificateGroupTypereadCertificateTypes in interface CertificateGroupTypeNodeId[] value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.public void writeCertificateTypes(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] certificateTypes)
throws org.eclipse.milo.opcua.stack.core.UaException
CertificateGroupTypewriteCertificateTypes in interface CertificateGroupTypecertificateTypes - the NodeId[] value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.public CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[]> readCertificateTypesAsync()
CertificateGroupTypeCertificateGroupType.readCertificateTypes().readCertificateTypesAsync in interface CertificateGroupTypepublic CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeCertificateTypesAsync(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] certificateTypes)
CertificateGroupTypeCertificateGroupType.writeCertificateTypes(NodeId[]).writeCertificateTypesAsync in interface CertificateGroupTypepublic PropertyTypeNode getCertificateTypesNode() throws org.eclipse.milo.opcua.stack.core.UaException
CertificateGroupTypePropertyType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
getCertificateTypesNode in interface CertificateGroupTypePropertyType Node, or null if it does not exist.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.public CompletableFuture<? extends PropertyTypeNode> getCertificateTypesNodeAsync()
CertificateGroupTypeCertificateGroupType.getCertificateTypesNode().getCertificateTypesNodeAsync in interface CertificateGroupTypepublic TrustListTypeNode getTrustListNode() throws org.eclipse.milo.opcua.stack.core.UaException
CertificateGroupTypeTrustListType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
getTrustListNode in interface CertificateGroupTypeTrustListType Node, or null if it does not exist.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.public CompletableFuture<? extends TrustListTypeNode> getTrustListNodeAsync()
CertificateGroupTypeCertificateGroupType.getTrustListNode().getTrustListNodeAsync in interface CertificateGroupTypeCopyright © 2021. All rights reserved.