public class AuditEventTypeNode extends BaseEventTypeNode implements AuditEventType
ACTION_TIME_STAMP, CLIENT_AUDIT_ENTRY_ID, CLIENT_USER_ID, SERVER_ID, STATUSEVENT_ID, EVENT_TYPE, LOCAL_TIME, MESSAGE, RECEIVE_TIME, SEVERITY, SOURCE_NAME, SOURCE_NODE, TIME| Constructor and Description |
|---|
AuditEventTypeNode(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.DateTime |
getActionTimeStamp()
Get the local value of the ActionTimeStamp Node.
|
PropertyTypeNode |
getActionTimeStampNode()
Get the ActionTimeStamp
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyTypeNode> |
getActionTimeStampNodeAsync()
Asynchronous implementation of
AuditEventType.getActionTimeStampNode(). |
String |
getClientAuditEntryId()
Get the local value of the ClientAuditEntryId Node.
|
PropertyTypeNode |
getClientAuditEntryIdNode()
Get the ClientAuditEntryId
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyTypeNode> |
getClientAuditEntryIdNodeAsync()
Asynchronous implementation of
AuditEventType.getClientAuditEntryIdNode(). |
String |
getClientUserId()
Get the local value of the ClientUserId Node.
|
PropertyTypeNode |
getClientUserIdNode()
Get the ClientUserId
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyTypeNode> |
getClientUserIdNodeAsync()
Asynchronous implementation of
AuditEventType.getClientUserIdNode(). |
String |
getServerId()
Get the local value of the ServerId Node.
|
PropertyTypeNode |
getServerIdNode()
Get the ServerId
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyTypeNode> |
getServerIdNodeAsync()
Asynchronous implementation of
AuditEventType.getServerIdNode(). |
Boolean |
getStatus()
Get the local value of the Status Node.
|
PropertyTypeNode |
getStatusNode()
Get the Status
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyTypeNode> |
getStatusNodeAsync()
Asynchronous implementation of
AuditEventType.getStatusNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.DateTime |
readActionTimeStamp()
Read the value of the ActionTimeStamp Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.DateTime> |
readActionTimeStampAsync()
An asynchronous implementation of
AuditEventType.readActionTimeStamp(). |
String |
readClientAuditEntryId()
Read the value of the ClientAuditEntryId Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends String> |
readClientAuditEntryIdAsync()
An asynchronous implementation of
AuditEventType.readClientAuditEntryId(). |
String |
readClientUserId()
Read the value of the ClientUserId Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends String> |
readClientUserIdAsync()
An asynchronous implementation of
AuditEventType.readClientUserId(). |
String |
readServerId()
Read the value of the ServerId Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends String> |
readServerIdAsync()
An asynchronous implementation of
AuditEventType.readServerId(). |
Boolean |
readStatus()
Read the value of the Status Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends Boolean> |
readStatusAsync()
An asynchronous implementation of
AuditEventType.readStatus(). |
void |
setActionTimeStamp(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime actionTimeStamp)
Set the local value of the ActionTimeStamp Node.
|
void |
setClientAuditEntryId(String clientAuditEntryId)
Set the local value of the ClientAuditEntryId Node.
|
void |
setClientUserId(String clientUserId)
Set the local value of the ClientUserId Node.
|
void |
setServerId(String serverId)
Set the local value of the ServerId Node.
|
void |
setStatus(Boolean status)
Set the local value of the Status Node.
|
void |
writeActionTimeStamp(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime actionTimeStamp)
Write a new value for the ActionTimeStamp Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeActionTimeStampAsync(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime actionTimeStamp)
An asynchronous implementation of
AuditEventType.writeActionTimeStamp(DateTime). |
void |
writeClientAuditEntryId(String clientAuditEntryId)
Write a new value for the ClientAuditEntryId Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeClientAuditEntryIdAsync(String clientAuditEntryId)
An asynchronous implementation of
AuditEventType.writeClientAuditEntryId(String). |
void |
writeClientUserId(String clientUserId)
Write a new value for the ClientUserId Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeClientUserIdAsync(String clientUserId)
An asynchronous implementation of
AuditEventType.writeClientUserId(String). |
void |
writeServerId(String serverId)
Write a new value for the ServerId Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeServerIdAsync(String serverId)
An asynchronous implementation of
AuditEventType.writeServerId(String). |
void |
writeStatus(Boolean status)
Write a new value for the Status Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeStatusAsync(Boolean status)
An asynchronous implementation of
AuditEventType.writeStatus(Boolean). |
getEventId, getEventIdNode, getEventIdNodeAsync, getEventType, getEventTypeNode, getEventTypeNodeAsync, getLocalTime, getLocalTimeNode, getLocalTimeNodeAsync, getMessage, getMessageNode, getMessageNodeAsync, getReceiveTime, getReceiveTimeNode, getReceiveTimeNodeAsync, getSeverity, getSeverityNode, getSeverityNodeAsync, getSourceName, getSourceNameNode, getSourceNameNodeAsync, getSourceNode, getSourceNodeNode, getSourceNodeNodeAsync, getTime, getTimeNode, getTimeNodeAsync, readEventId, readEventIdAsync, readEventType, readEventTypeAsync, readLocalTime, readLocalTimeAsync, readMessage, readMessageAsync, readReceiveTime, readReceiveTimeAsync, readSeverity, readSeverityAsync, readSourceName, readSourceNameAsync, readSourceNode, readSourceNodeAsync, readTime, readTimeAsync, setEventId, setEventType, setLocalTime, setMessage, setReceiveTime, setSeverity, setSourceName, setSourceNode, setTime, writeEventId, writeEventIdAsync, writeEventType, writeEventTypeAsync, writeLocalTime, writeLocalTimeAsync, writeMessage, writeMessageAsync, writeReceiveTime, writeReceiveTimeAsync, writeSeverity, writeSeverityAsync, writeSourceName, writeSourceNameAsync, writeSourceNode, writeSourceNodeAsync, writeTime, writeTimeAsynccallMethod, 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, waitgetEventId, getEventIdNode, getEventIdNodeAsync, getEventType, getEventTypeNode, getEventTypeNodeAsync, getLocalTime, getLocalTimeNode, getLocalTimeNodeAsync, getMessage, getMessageNode, getMessageNodeAsync, getReceiveTime, getReceiveTimeNode, getReceiveTimeNodeAsync, getSeverity, getSeverityNode, getSeverityNodeAsync, getSourceName, getSourceNameNode, getSourceNameNodeAsync, getSourceNode, getSourceNodeNode, getSourceNodeNodeAsync, getTime, getTimeNode, getTimeNodeAsync, readEventId, readEventIdAsync, readEventType, readEventTypeAsync, readLocalTime, readLocalTimeAsync, readMessage, readMessageAsync, readReceiveTime, readReceiveTimeAsync, readSeverity, readSeverityAsync, readSourceName, readSourceNameAsync, readSourceNode, readSourceNodeAsync, readTime, readTimeAsync, setEventId, setEventType, setLocalTime, setMessage, setReceiveTime, setSeverity, setSourceName, setSourceNode, setTime, writeEventId, writeEventIdAsync, writeEventType, writeEventTypeAsync, writeLocalTime, writeLocalTimeAsync, writeMessage, writeMessageAsync, writeReceiveTime, writeReceiveTimeAsync, writeSeverity, writeSeverityAsync, writeSourceName, writeSourceNameAsync, writeSourceNode, writeSourceNodeAsync, writeTime, writeTimeAsyncgetEventNotifier, setEventNotifiergetBrowseName, getDescription, getDisplayName, getNodeClass, getNodeId, getUserWriteMask, getWriteMask, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setUserWriteMask, setWriteMaskpublic AuditEventTypeNode(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.DateTime getActionTimeStamp()
throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypeThe returned value is the last seen; it is not read live from the server.
getActionTimeStamp in interface AuditEventTypeorg.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ActionTimeStamp Node.public void setActionTimeStamp(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime actionTimeStamp)
throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypeThe value is only updated locally; it is not written to the server.
setActionTimeStamp in interface AuditEventTypeactionTimeStamp - the local value to set for the ActionTimeStamp Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ActionTimeStamp Node.public org.eclipse.milo.opcua.stack.core.types.builtin.DateTime readActionTimeStamp()
throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypereadActionTimeStamp in interface AuditEventTypeDateTime value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.public void writeActionTimeStamp(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime actionTimeStamp)
throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypewriteActionTimeStamp in interface AuditEventTypeactionTimeStamp - the DateTime 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.DateTime> readActionTimeStampAsync()
AuditEventTypeAuditEventType.readActionTimeStamp().readActionTimeStampAsync in interface AuditEventTypepublic CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeActionTimeStampAsync(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime actionTimeStamp)
AuditEventTypeAuditEventType.writeActionTimeStamp(DateTime).writeActionTimeStampAsync in interface AuditEventTypepublic PropertyTypeNode getActionTimeStampNode() throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypePropertyType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
getActionTimeStampNode in interface AuditEventTypePropertyType 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> getActionTimeStampNodeAsync()
AuditEventTypeAuditEventType.getActionTimeStampNode().getActionTimeStampNodeAsync in interface AuditEventTypepublic Boolean getStatus() throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypeThe returned value is the last seen; it is not read live from the server.
getStatus in interface AuditEventTypeorg.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Status Node.public void setStatus(Boolean status) throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypeThe value is only updated locally; it is not written to the server.
setStatus in interface AuditEventTypestatus - the local value to set for the Status Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Status Node.public Boolean readStatus() throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypereadStatus in interface AuditEventTypeBoolean value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.public void writeStatus(Boolean status) throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypewriteStatus in interface AuditEventTypestatus - the Boolean value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.public CompletableFuture<? extends Boolean> readStatusAsync()
AuditEventTypeAuditEventType.readStatus().readStatusAsync in interface AuditEventTypepublic CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeStatusAsync(Boolean status)
AuditEventTypeAuditEventType.writeStatus(Boolean).writeStatusAsync in interface AuditEventTypepublic PropertyTypeNode getStatusNode() throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypePropertyType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
getStatusNode in interface AuditEventTypePropertyType 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> getStatusNodeAsync()
AuditEventTypeAuditEventType.getStatusNode().getStatusNodeAsync in interface AuditEventTypepublic String getServerId() throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypeThe returned value is the last seen; it is not read live from the server.
getServerId in interface AuditEventTypeorg.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ServerId Node.public void setServerId(String serverId) throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypeThe value is only updated locally; it is not written to the server.
setServerId in interface AuditEventTypeserverId - the local value to set for the ServerId Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ServerId Node.public String readServerId() throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypereadServerId in interface AuditEventTypeString value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.public void writeServerId(String serverId) throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypewriteServerId in interface AuditEventTypeserverId - the String value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.public CompletableFuture<? extends String> readServerIdAsync()
AuditEventTypeAuditEventType.readServerId().readServerIdAsync in interface AuditEventTypepublic CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeServerIdAsync(String serverId)
AuditEventTypeAuditEventType.writeServerId(String).writeServerIdAsync in interface AuditEventTypepublic PropertyTypeNode getServerIdNode() throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypePropertyType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
getServerIdNode in interface AuditEventTypePropertyType 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> getServerIdNodeAsync()
AuditEventTypeAuditEventType.getServerIdNode().getServerIdNodeAsync in interface AuditEventTypepublic String getClientAuditEntryId() throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypeThe returned value is the last seen; it is not read live from the server.
getClientAuditEntryId in interface AuditEventTypeorg.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ClientAuditEntryId Node.public void setClientAuditEntryId(String clientAuditEntryId) throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypeThe value is only updated locally; it is not written to the server.
setClientAuditEntryId in interface AuditEventTypeclientAuditEntryId - the local value to set for the ClientAuditEntryId Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ClientAuditEntryId Node.public String readClientAuditEntryId() throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypereadClientAuditEntryId in interface AuditEventTypeString value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.public void writeClientAuditEntryId(String clientAuditEntryId) throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypewriteClientAuditEntryId in interface AuditEventTypeclientAuditEntryId - the String value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.public CompletableFuture<? extends String> readClientAuditEntryIdAsync()
AuditEventTypeAuditEventType.readClientAuditEntryId().readClientAuditEntryIdAsync in interface AuditEventTypepublic CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeClientAuditEntryIdAsync(String clientAuditEntryId)
AuditEventTypeAuditEventType.writeClientAuditEntryId(String).writeClientAuditEntryIdAsync in interface AuditEventTypepublic PropertyTypeNode getClientAuditEntryIdNode() throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypePropertyType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
getClientAuditEntryIdNode in interface AuditEventTypePropertyType 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> getClientAuditEntryIdNodeAsync()
AuditEventTypeAuditEventType.getClientAuditEntryIdNode().getClientAuditEntryIdNodeAsync in interface AuditEventTypepublic String getClientUserId() throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypeThe returned value is the last seen; it is not read live from the server.
getClientUserId in interface AuditEventTypeorg.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ClientUserId Node.public void setClientUserId(String clientUserId) throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypeThe value is only updated locally; it is not written to the server.
setClientUserId in interface AuditEventTypeclientUserId - the local value to set for the ClientUserId Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ClientUserId Node.public String readClientUserId() throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypereadClientUserId in interface AuditEventTypeString value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.public void writeClientUserId(String clientUserId) throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypewriteClientUserId in interface AuditEventTypeclientUserId - the String value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.public CompletableFuture<? extends String> readClientUserIdAsync()
AuditEventTypeAuditEventType.readClientUserId().readClientUserIdAsync in interface AuditEventTypepublic CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeClientUserIdAsync(String clientUserId)
AuditEventTypeAuditEventType.writeClientUserId(String).writeClientUserIdAsync in interface AuditEventTypepublic PropertyTypeNode getClientUserIdNode() throws org.eclipse.milo.opcua.stack.core.UaException
AuditEventTypePropertyType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
getClientUserIdNode in interface AuditEventTypePropertyType 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> getClientUserIdNodeAsync()
AuditEventTypeAuditEventType.getClientUserIdNode().getClientUserIdNodeAsync in interface AuditEventTypeCopyright © 2021. All rights reserved.