public interface AddressSpaceFilter
| Modifier and Type | Method and Description |
|---|---|
boolean |
filterAddNodes(OpcUaServer server,
AddNodesItem addNodesItem)
Return
true if the add nodes operation for addNodesItem should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterAddReferences(OpcUaServer server,
AddReferencesItem addReferencesItem)
Return
true if the add references operation for addReferencesItem should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterBrowse(OpcUaServer server,
NodeId nodeId)
Return
true if the browse operation for nodeId should be handled by the AddressSpace
this filter belongs to. |
boolean |
filterCall(OpcUaServer server,
CallMethodRequest callMethodRequest)
Return
true if the call method operation for callMethodRequest should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterDeleteNodes(OpcUaServer server,
DeleteNodesItem deleteNodesItem)
Return
true if the delete nodes operation for deleteNodesItem should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterDeleteReferences(OpcUaServer server,
DeleteReferencesItem deleteReferencesItem)
Return
true if the delete references operation for deleteReferencesITem should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterHistoryRead(OpcUaServer server,
HistoryReadValueId historyReadValueId)
Return
true if the history read operation for historyReadValueId should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterHistoryUpdate(OpcUaServer server,
HistoryUpdateDetails historyUpdateDetails)
Return
true if the history update operation for historyUpdateDetails should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterOnCreateDataItem(OpcUaServer server,
ReadValueId readValueId)
Return
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterOnCreateEventItem(OpcUaServer server,
ReadValueId readValueId)
Return
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterOnDataItemsCreated(OpcUaServer server,
ReadValueId readValueId)
Return
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterOnDataItemsDeleted(OpcUaServer server,
ReadValueId readValueId)
Return
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterOnDataItemsModified(OpcUaServer server,
ReadValueId readValueId)
Return
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterOnEventItemsCreated(OpcUaServer server,
ReadValueId readValueId)
Return
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterOnEventItemsDeleted(OpcUaServer server,
ReadValueId readValueId)
Return
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterOnEventItemsModified(OpcUaServer server,
ReadValueId readValueId)
Return
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterOnModifyDataItem(OpcUaServer server,
ReadValueId readValueId)
Return
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterOnModifyEventItem(OpcUaServer server,
ReadValueId readValueId)
Return
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterOnMonitoringModeChanged(OpcUaServer server,
ReadValueId readValueId)
Return
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterRead(OpcUaServer server,
ReadValueId readValueId)
Return
true if the read operation for readValueId should be handled by the AddressSpace
this filter belongs to. |
boolean |
filterRegisterNode(OpcUaServer server,
NodeId nodeId)
Return
true if the register node operation for nodeId should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterUnregisterNode(OpcUaServer server,
NodeId nodeId)
Return
true if the unregister node operation for nodeId should be handled by the
AddressSpace this filter belongs to. |
boolean |
filterWrite(OpcUaServer server,
WriteValue writeValue)
Return
true if the write operation for writeValue should be handled by the AddressSpace
this filter belongs to. |
boolean filterBrowse(OpcUaServer server, NodeId nodeId)
true if the browse operation for nodeId should be handled by the AddressSpace
this filter belongs to.server - the OpcUaServer.nodeId - the NodeId from the browse operation.true if the browse operation for nodeId should be handled the the AddressSpace
this filter belongs to.ViewServices.browse(BrowseContext, ViewDescription, NodeId)boolean filterRegisterNode(OpcUaServer server, NodeId nodeId)
true if the register node operation for nodeId should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.nodeId - the NodeId to register.true if the register node operation for nodeId should be handled by the
AddressSpace this filter belongs to.ViewServices.registerNodes(RegisterNodesContext, List)boolean filterUnregisterNode(OpcUaServer server, NodeId nodeId)
true if the unregister node operation for nodeId should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.nodeId - the NodeId to unregister.true if the unregister node operation for nodeId should be handled by the
AddressSpace this filter belongs to.ViewServices.unregisterNodes(UnregisterNodesContext, List)boolean filterRead(OpcUaServer server, ReadValueId readValueId)
true if the read operation for readValueId should be handled by the AddressSpace
this filter belongs to.server - the OpcUaServer.readValueId - the ReadValueId from the read operation.true if the read operation for readValueId should be handled by the AddressSpace
this filter belongs to.AttributeServices.read(ReadContext, Double, TimestampsToReturn, List)boolean filterWrite(OpcUaServer server, WriteValue writeValue)
true if the write operation for writeValue should be handled by the AddressSpace
this filter belongs to.server - the OpcUaServer.writeValue - the WriteValue from the write operation.true if the write operation for writeValue should be handled by the AddressSpace
this filter belongs to.AttributeServices.write(WriteContext, List)boolean filterHistoryRead(OpcUaServer server, HistoryReadValueId historyReadValueId)
true if the history read operation for historyReadValueId should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.historyReadValueId - the HistoryReadValueId from the history read operation.true if the history read operation for historyReadValueId should be handled by the
AddressSpace this filter belongs to.AttributeHistoryServices.historyRead(HistoryReadContext, HistoryReadDetails, TimestampsToReturn, List)boolean filterHistoryUpdate(OpcUaServer server, HistoryUpdateDetails historyUpdateDetails)
true if the history update operation for historyUpdateDetails should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.historyUpdateDetails - the HistoryUpdateDetails from the history update operation.true if the history update operation for historyUpdateDetails should be handled by the
AddressSpace this filter belongs to.AttributeHistoryServices.historyUpdate(HistoryUpdateContext, List)boolean filterCall(OpcUaServer server, CallMethodRequest callMethodRequest)
true if the call method operation for callMethodRequest should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.callMethodRequest - the CallMethodRequest from the call method operation.true if the call method operation for callMethodRequest should be handled by the
AddressSpace this filter belongs to.MethodServices.call(CallContext, List)boolean filterOnCreateDataItem(OpcUaServer server, ReadValueId readValueId)
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.readValueId - the ReadValueId from the monitored item operation.true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.MonitoredItemServices.onCreateDataItem(ReadValueId, Double, UInteger, BiConsumer)boolean filterOnModifyDataItem(OpcUaServer server, ReadValueId readValueId)
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.readValueId - the ReadValueId from the monitored item operation.true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.MonitoredItemServices.onModifyDataItem(ReadValueId, Double, UInteger, BiConsumer)boolean filterOnCreateEventItem(OpcUaServer server, ReadValueId readValueId)
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.readValueId - the ReadValueId from the monitored item operation.true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.MonitoredItemServices.onCreateEventItem(ReadValueId, UInteger, Consumer)boolean filterOnModifyEventItem(OpcUaServer server, ReadValueId readValueId)
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.readValueId - the ReadValueId from the monitored item operation.true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.MonitoredItemServices.onModifyEventItem(ReadValueId, UInteger, Consumer)boolean filterOnDataItemsCreated(OpcUaServer server, ReadValueId readValueId)
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.readValueId - the ReadValueId from the monitored item operation.true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.MonitoredItemServices.onDataItemsCreated(List)boolean filterOnDataItemsModified(OpcUaServer server, ReadValueId readValueId)
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.readValueId - the ReadValueId from the monitored item operation.true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.MonitoredItemServices.onDataItemsModified(List)boolean filterOnDataItemsDeleted(OpcUaServer server, ReadValueId readValueId)
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.readValueId - the ReadValueId from the monitored item operation.true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.MonitoredItemServices.onDataItemsDeleted(List)boolean filterOnEventItemsCreated(OpcUaServer server, ReadValueId readValueId)
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.readValueId - the ReadValueId from the monitored item operation.true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.MonitoredItemServices.onEventItemsCreated(List)boolean filterOnEventItemsModified(OpcUaServer server, ReadValueId readValueId)
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.readValueId - the ReadValueId from the monitored item operation.true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.MonitoredItemServices.onEventItemsModified(List)boolean filterOnEventItemsDeleted(OpcUaServer server, ReadValueId readValueId)
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.readValueId - the ReadValueId from the monitored item operation.true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.MonitoredItemServices.onEventItemsDeleted(List)boolean filterOnMonitoringModeChanged(OpcUaServer server, ReadValueId readValueId)
true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.readValueId - the ReadValueId from the monitored item operation.true if the monitored item operation for readValueId should be handled by the
AddressSpace this filter belongs to.MonitoredItemServices.onMonitoringModeChanged(List)boolean filterAddNodes(OpcUaServer server, AddNodesItem addNodesItem)
true if the add nodes operation for addNodesItem should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.addNodesItem - the AddNodesItem from the add nodes operation.true if the add nodes operation for addNodesItem should be handled by the
AddressSpace this filter belongs to.NodeManagementServices.addNodes(AddNodesContext, List)boolean filterDeleteNodes(OpcUaServer server, DeleteNodesItem deleteNodesItem)
true if the delete nodes operation for deleteNodesItem should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.deleteNodesItem - the DeleteNodesItem from the delete nodes operation.true if the delete nodes operation for deleteNodesItem should be handled by the
AddressSpace this filter belongs to.NodeManagementServices.deleteNodes(DeleteNodesContext, List)boolean filterAddReferences(OpcUaServer server, AddReferencesItem addReferencesItem)
true if the add references operation for addReferencesItem should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.addReferencesItem - the AddReferencesItem from the add references operation.true if the add references operation for addReferencesItem should be handled by the
AddressSpace this filter belongs to.NodeManagementServices.addReferences(AddReferencesContext, List)boolean filterDeleteReferences(OpcUaServer server, DeleteReferencesItem deleteReferencesItem)
true if the delete references operation for deleteReferencesITem should be handled by the
AddressSpace this filter belongs to.server - the OpcUaServer.deleteReferencesItem - the DeleteReferencesItem from the delete references operation.true if the delete references operation for deleteReferencesITem should be handled by the
AddressSpace this filter belongs to.NodeManagementServices.deleteReferences(DeleteReferencesContext, List)Copyright © 2021. All rights reserved.