Interface CertificateGroupType
- All Superinterfaces:
BaseObjectType,org.eclipse.milo.opcua.sdk.core.nodes.Node,org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode
- All Known Implementing Classes:
CertificateGroupTypeNode
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[]> -
Method Summary
Modifier and TypeMethodDescriptionGet the CertificateExpiredCertificateExpirationAlarmTypeNode, ornullif it does not exist.CompletableFuture<? extends CertificateExpirationAlarmType>Asynchronous implementation ofgetCertificateExpiredNode().org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[]Get the local value of the CertificateTypes Node.Get the CertificateTypesPropertyTypeNode, ornullif it does not exist.CompletableFuture<? extends PropertyType>Asynchronous implementation ofgetCertificateTypesNode().Get the TrustListTrustListTypeNode, ornullif it does not exist.CompletableFuture<? extends TrustListType>Asynchronous implementation ofgetTrustListNode().Get the TrustListOutOfDateTrustListOutOfDateAlarmTypeNode, ornullif it does not exist.CompletableFuture<? extends TrustListOutOfDateAlarmType>Asynchronous implementation ofgetTrustListOutOfDateNode().org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[]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[]>An asynchronous implementation ofreadCertificateTypes().voidsetCertificateTypes(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] value) Set the local value of the CertificateTypes Node.voidwriteCertificateTypes(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] value) 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[] value) An asynchronous implementation ofwriteCertificateTypes(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[]).Methods inherited from interface org.eclipse.milo.opcua.sdk.core.nodes.Node
getAccessRestrictions, getBrowseName, getDescription, getDisplayName, getNodeClass, getNodeId, getRolePermissions, getUserRolePermissions, getUserWriteMask, getWriteMask, setAccessRestrictions, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setRolePermissions, setUserRolePermissions, setUserWriteMask, setWriteMaskMethods inherited from interface org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode
getEventNotifier, setEventNotifier
-
Field Details
-
CERTIFICATE_TYPES
static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[]> CERTIFICATE_TYPES
-
-
Method Details
-
getCertificateTypes
org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] getCertificateTypes() throws org.eclipse.milo.opcua.stack.core.UaExceptionGet the local value of the CertificateTypes Node.The returned value is the last seen; it is not read live from the server.
- Returns:
- the local value of the CertificateTypes Node.
- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the CertificateTypes Node.
-
setCertificateTypes
void setCertificateTypes(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] value) throws org.eclipse.milo.opcua.stack.core.UaException Set the local value of the CertificateTypes Node.The value is only updated locally; it is not written to the server.
- Parameters:
value- the local value to set for the CertificateTypes Node.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the CertificateTypes Node.
-
readCertificateTypes
org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] readCertificateTypes() throws org.eclipse.milo.opcua.stack.core.UaExceptionRead the value of the CertificateTypes Node from the server and update the local value if the operation succeeds.- Returns:
- the
NodeIdvalue read from the server. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
writeCertificateTypes
void writeCertificateTypes(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] value) throws org.eclipse.milo.opcua.stack.core.UaException Write a new value for the CertificateTypes Node to the server and update the local value if the operation succeeds.- Parameters:
value- theNodeIdvalue to write to the server.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
readCertificateTypesAsync
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[]> readCertificateTypesAsync()An asynchronous implementation ofreadCertificateTypes().- Returns:
- a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
-
writeCertificateTypesAsync
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeCertificateTypesAsync(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[] value) An asynchronous implementation ofwriteCertificateTypes(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId[]).- Returns:
- a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
-
getCertificateTypesNode
Get the CertificateTypesPropertyTypeNode, ornullif it does not exist.The Node is created when first accessed and cached for subsequent calls.
- Returns:
- the CertificateTypes
PropertyTypeNode, ornullif it does not exist. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Node.
-
getCertificateTypesNodeAsync
CompletableFuture<? extends PropertyType> getCertificateTypesNodeAsync()Asynchronous implementation ofgetCertificateTypesNode().- Returns:
- a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
-
getTrustListNode
Get the TrustListTrustListTypeNode, ornullif it does not exist.The Node is created when first accessed and cached for subsequent calls.
- Returns:
- the TrustList
TrustListTypeNode, ornullif it does not exist. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Node.
-
getTrustListNodeAsync
CompletableFuture<? extends TrustListType> getTrustListNodeAsync()Asynchronous implementation ofgetTrustListNode().- Returns:
- a CompletableFuture that completes successfully with the TrustListType Node or completes exceptionally if an error occurs creating or getting the Node.
-
getCertificateExpiredNode
CertificateExpirationAlarmType getCertificateExpiredNode() throws org.eclipse.milo.opcua.stack.core.UaExceptionGet the CertificateExpiredCertificateExpirationAlarmTypeNode, ornullif it does not exist.The Node is created when first accessed and cached for subsequent calls.
- Returns:
- the CertificateExpired
CertificateExpirationAlarmTypeNode, ornullif it does not exist. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Node.
-
getCertificateExpiredNodeAsync
CompletableFuture<? extends CertificateExpirationAlarmType> getCertificateExpiredNodeAsync()Asynchronous implementation ofgetCertificateExpiredNode().- Returns:
- a CompletableFuture that completes successfully with the CertificateExpirationAlarmType Node or completes exceptionally if an error occurs creating or getting the Node.
-
getTrustListOutOfDateNode
TrustListOutOfDateAlarmType getTrustListOutOfDateNode() throws org.eclipse.milo.opcua.stack.core.UaExceptionGet the TrustListOutOfDateTrustListOutOfDateAlarmTypeNode, ornullif it does not exist.The Node is created when first accessed and cached for subsequent calls.
- Returns:
- the TrustListOutOfDate
TrustListOutOfDateAlarmTypeNode, ornullif it does not exist. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Node.
-
getTrustListOutOfDateNodeAsync
CompletableFuture<? extends TrustListOutOfDateAlarmType> getTrustListOutOfDateNodeAsync()Asynchronous implementation ofgetTrustListOutOfDateNode().- Returns:
- a CompletableFuture that completes successfully with the TrustListOutOfDateAlarmType Node or completes exceptionally if an error occurs creating or getting the Node.
-