public interface ServerConfigurationType extends BaseObjectType
| Modifier and Type | Field and Description |
|---|---|
static QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> |
MAX_TRUST_LIST_SIZE |
static QualifiedProperty<Boolean> |
MULTICAST_DNS_ENABLED |
static QualifiedProperty<String[]> |
SERVER_CAPABILITIES |
static QualifiedProperty<String[]> |
SUPPORTED_PRIVATE_KEY_FORMATS |
| Modifier and Type | Method and Description |
|---|---|
CertificateGroupFolderType |
getCertificateGroupsNode()
Get the CertificateGroups
CertificateGroupFolderType Node, or null if it does not exist. |
CompletableFuture<? extends CertificateGroupFolderType> |
getCertificateGroupsNodeAsync()
Asynchronous implementation of
getCertificateGroupsNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger |
getMaxTrustListSize()
Get the local value of the MaxTrustListSize Node.
|
PropertyType |
getMaxTrustListSizeNode()
Get the MaxTrustListSize
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getMaxTrustListSizeNodeAsync()
Asynchronous implementation of
getMaxTrustListSizeNode(). |
Boolean |
getMulticastDnsEnabled()
Get the local value of the MulticastDnsEnabled Node.
|
PropertyType |
getMulticastDnsEnabledNode()
Get the MulticastDnsEnabled
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getMulticastDnsEnabledNodeAsync()
Asynchronous implementation of
getMulticastDnsEnabledNode(). |
String[] |
getServerCapabilities()
Get the local value of the ServerCapabilities Node.
|
PropertyType |
getServerCapabilitiesNode()
Get the ServerCapabilities
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getServerCapabilitiesNodeAsync()
Asynchronous implementation of
getServerCapabilitiesNode(). |
String[] |
getSupportedPrivateKeyFormats()
Get the local value of the SupportedPrivateKeyFormats Node.
|
PropertyType |
getSupportedPrivateKeyFormatsNode()
Get the SupportedPrivateKeyFormats
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getSupportedPrivateKeyFormatsNodeAsync()
Asynchronous implementation of
getSupportedPrivateKeyFormatsNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger |
readMaxTrustListSize()
Read the value of the MaxTrustListSize Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> |
readMaxTrustListSizeAsync()
An asynchronous implementation of
readMaxTrustListSize(). |
Boolean |
readMulticastDnsEnabled()
Read the value of the MulticastDnsEnabled Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends Boolean> |
readMulticastDnsEnabledAsync()
An asynchronous implementation of
readMulticastDnsEnabled(). |
String[] |
readServerCapabilities()
Read the value of the ServerCapabilities Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends String[]> |
readServerCapabilitiesAsync()
An asynchronous implementation of
readServerCapabilities(). |
String[] |
readSupportedPrivateKeyFormats()
Read the value of the SupportedPrivateKeyFormats Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends String[]> |
readSupportedPrivateKeyFormatsAsync()
An asynchronous implementation of
readSupportedPrivateKeyFormats(). |
void |
setMaxTrustListSize(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger maxTrustListSize)
Set the local value of the MaxTrustListSize Node.
|
void |
setMulticastDnsEnabled(Boolean multicastDnsEnabled)
Set the local value of the MulticastDnsEnabled Node.
|
void |
setServerCapabilities(String[] serverCapabilities)
Set the local value of the ServerCapabilities Node.
|
void |
setSupportedPrivateKeyFormats(String[] supportedPrivateKeyFormats)
Set the local value of the SupportedPrivateKeyFormats Node.
|
void |
writeMaxTrustListSize(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger maxTrustListSize)
Write a new value for the MaxTrustListSize Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeMaxTrustListSizeAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger maxTrustListSize)
An asynchronous implementation of
writeMaxTrustListSize(UInteger). |
void |
writeMulticastDnsEnabled(Boolean multicastDnsEnabled)
Write a new value for the MulticastDnsEnabled Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeMulticastDnsEnabledAsync(Boolean multicastDnsEnabled)
An asynchronous implementation of
writeMulticastDnsEnabled(Boolean). |
void |
writeServerCapabilities(String[] serverCapabilities)
Write a new value for the ServerCapabilities Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeServerCapabilitiesAsync(String[] serverCapabilities)
An asynchronous implementation of
writeServerCapabilities(String[]). |
void |
writeSupportedPrivateKeyFormats(String[] supportedPrivateKeyFormats)
Write a new value for the SupportedPrivateKeyFormats Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeSupportedPrivateKeyFormatsAsync(String[] supportedPrivateKeyFormats)
An asynchronous implementation of
writeSupportedPrivateKeyFormats(String[]). |
getEventNotifier, setEventNotifiergetBrowseName, getDescription, getDisplayName, getNodeClass, getNodeId, getUserWriteMask, getWriteMask, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setUserWriteMask, setWriteMaskstatic final QualifiedProperty<String[]> SERVER_CAPABILITIES
static final QualifiedProperty<String[]> SUPPORTED_PRIVATE_KEY_FORMATS
static final QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> MAX_TRUST_LIST_SIZE
static final QualifiedProperty<Boolean> MULTICAST_DNS_ENABLED
String[] getServerCapabilities() throws org.eclipse.milo.opcua.stack.core.UaException
The returned value is the last seen; it is not read live from the server.
org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ServerCapabilities Node.void setServerCapabilities(String[] serverCapabilities) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
serverCapabilities - the local value to set for the ServerCapabilities Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ServerCapabilities Node.String[] readServerCapabilities() throws org.eclipse.milo.opcua.stack.core.UaException
String[] value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeServerCapabilities(String[] serverCapabilities) throws org.eclipse.milo.opcua.stack.core.UaException
serverCapabilities - the String[] value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.CompletableFuture<? extends String[]> readServerCapabilitiesAsync()
readServerCapabilities().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeServerCapabilitiesAsync(String[] serverCapabilities)
writeServerCapabilities(String[]).PropertyType getServerCapabilitiesNode() throws org.eclipse.milo.opcua.stack.core.UaException
PropertyType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
PropertyType Node, or null if it does not exist.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.CompletableFuture<? extends PropertyType> getServerCapabilitiesNodeAsync()
getServerCapabilitiesNode().String[] getSupportedPrivateKeyFormats() throws org.eclipse.milo.opcua.stack.core.UaException
The returned value is the last seen; it is not read live from the server.
org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the SupportedPrivateKeyFormats Node.void setSupportedPrivateKeyFormats(String[] supportedPrivateKeyFormats) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
supportedPrivateKeyFormats - the local value to set for the SupportedPrivateKeyFormats Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the SupportedPrivateKeyFormats Node.String[] readSupportedPrivateKeyFormats() throws org.eclipse.milo.opcua.stack.core.UaException
String[] value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeSupportedPrivateKeyFormats(String[] supportedPrivateKeyFormats) throws org.eclipse.milo.opcua.stack.core.UaException
supportedPrivateKeyFormats - the String[] value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.CompletableFuture<? extends String[]> readSupportedPrivateKeyFormatsAsync()
readSupportedPrivateKeyFormats().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeSupportedPrivateKeyFormatsAsync(String[] supportedPrivateKeyFormats)
writeSupportedPrivateKeyFormats(String[]).PropertyType getSupportedPrivateKeyFormatsNode() throws org.eclipse.milo.opcua.stack.core.UaException
PropertyType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
PropertyType Node, or null if it does not exist.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.CompletableFuture<? extends PropertyType> getSupportedPrivateKeyFormatsNodeAsync()
getSupportedPrivateKeyFormatsNode().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getMaxTrustListSize()
throws org.eclipse.milo.opcua.stack.core.UaException
The returned value is the last seen; it is not read live from the server.
org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxTrustListSize Node.void setMaxTrustListSize(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger maxTrustListSize)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
maxTrustListSize - the local value to set for the MaxTrustListSize Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxTrustListSize Node.org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxTrustListSize()
throws org.eclipse.milo.opcua.stack.core.UaException
UInteger value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeMaxTrustListSize(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger maxTrustListSize)
throws org.eclipse.milo.opcua.stack.core.UaException
maxTrustListSize - the UInteger value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readMaxTrustListSizeAsync()
readMaxTrustListSize().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxTrustListSizeAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger maxTrustListSize)
writeMaxTrustListSize(UInteger).PropertyType getMaxTrustListSizeNode() throws org.eclipse.milo.opcua.stack.core.UaException
PropertyType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
PropertyType Node, or null if it does not exist.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.CompletableFuture<? extends PropertyType> getMaxTrustListSizeNodeAsync()
getMaxTrustListSizeNode().Boolean getMulticastDnsEnabled() throws org.eclipse.milo.opcua.stack.core.UaException
The returned value is the last seen; it is not read live from the server.
org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MulticastDnsEnabled Node.void setMulticastDnsEnabled(Boolean multicastDnsEnabled) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
multicastDnsEnabled - the local value to set for the MulticastDnsEnabled Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MulticastDnsEnabled Node.Boolean readMulticastDnsEnabled() throws org.eclipse.milo.opcua.stack.core.UaException
Boolean value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeMulticastDnsEnabled(Boolean multicastDnsEnabled) throws org.eclipse.milo.opcua.stack.core.UaException
multicastDnsEnabled - the Boolean value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.CompletableFuture<? extends Boolean> readMulticastDnsEnabledAsync()
readMulticastDnsEnabled().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMulticastDnsEnabledAsync(Boolean multicastDnsEnabled)
writeMulticastDnsEnabled(Boolean).PropertyType getMulticastDnsEnabledNode() throws org.eclipse.milo.opcua.stack.core.UaException
PropertyType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
PropertyType Node, or null if it does not exist.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.CompletableFuture<? extends PropertyType> getMulticastDnsEnabledNodeAsync()
getMulticastDnsEnabledNode().CertificateGroupFolderType getCertificateGroupsNode() throws org.eclipse.milo.opcua.stack.core.UaException
CertificateGroupFolderType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
CertificateGroupFolderType Node, or null if it does not exist.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.CompletableFuture<? extends CertificateGroupFolderType> getCertificateGroupsNodeAsync()
getCertificateGroupsNode().Copyright © 2021. All rights reserved.