| Package | Description |
|---|---|
| org.eclipse.milo.opcua.sdk.server.nodes | |
| org.eclipse.milo.opcua.sdk.server.nodes.filters |
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultAttributeFilter
An
AttributeFilter that gets or sets the actual attribute value from the backing field of a UaNode. |
| Modifier and Type | Method and Description |
|---|---|
UaVariableNode.UaVariableNodeBuilder |
UaVariableNode.UaVariableNodeBuilder.addAttributeFilter(AttributeFilter attributeFilter)
Add an
AttributeFilter that will be added to the node's
AttributeFilterChain when it's built. |
UaObjectTypeNode.UaObjectTypeNodeBuilder |
UaObjectTypeNode.UaObjectTypeNodeBuilder.addAttributeFilter(AttributeFilter attributeFilter)
Add an
AttributeFilter that will be added to the node's
AttributeFilterChain when it's built. |
UaObjectNode.UaObjectNodeBuilder |
UaObjectNode.UaObjectNodeBuilder.addAttributeFilter(AttributeFilter attributeFilter)
Add an
AttributeFilter that will be added to the node's
AttributeFilterChain when it's built. |
UaMethodNode.UaMethodNodeBuilder |
UaMethodNode.UaMethodNodeBuilder.addAttributeFilter(AttributeFilter attributeFilter)
Add an
AttributeFilter that will be added to the node's
AttributeFilterChain when it's built. |
| Modifier and Type | Method and Description |
|---|---|
static AttributeFilter |
AttributeFilters.getValue(Function<AttributeFilterContext.GetAttributeContext,DataValue> get) |
static AttributeFilter |
AttributeFilters.setValue(BiConsumer<AttributeFilterContext.SetAttributeContext,DataValue> set) |
| Modifier and Type | Method and Description |
|---|---|
List<AttributeFilter> |
AttributeFilterChain.getFilters()
Get a List containing all the
AttributeFilters belonging to this chain. |
| Modifier and Type | Method and Description |
|---|---|
AttributeFilterChain |
AttributeFilterChain.addFirst(AttributeFilter... attributeFilters)
Add
attributeFilters (sequentially) to the front of this filter chain. |
AttributeFilterChain |
AttributeFilterChain.addFirst(AttributeFilter attributeFilter)
Add
attributeFilter to the front of this filter chain. |
AttributeFilterChain |
AttributeFilterChain.addLast(AttributeFilter... attributeFilters)
Add
attributeFilters (sequentially) to the end of this filter chain. |
AttributeFilterChain |
AttributeFilterChain.addLast(AttributeFilter attributeFilter)
Add
attributeFilter to the end of this filter chain. |
| Modifier and Type | Method and Description |
|---|---|
AttributeFilterChain |
AttributeFilterChain.addFirst(Collection<AttributeFilter> attributeFilters)
Add
attributeFilters (sequentially) to the front of this filter chain. |
AttributeFilterChain |
AttributeFilterChain.addLast(Collection<AttributeFilter> attributeFilters)
Add
attributeFilters (sequentially) to the end of this filter chain. |
| Constructor and Description |
|---|
AttributeFilterChain(AttributeFilter filter)
Create an
AttributeFilterChain with filter added to it. |
| Constructor and Description |
|---|
AttributeFilterChain(List<AttributeFilter> filters)
Create an
AttributeFilterChain with filters added to it. |
Copyright © 2021. All rights reserved.