Uses of Interface
com.prosysopc.ua.nodes.UaVariable

Packages that use UaVariable
com.prosysopc.ua.client.nodes Client side implementation classes for the UaNode model. 
com.prosysopc.ua.nodes Common UaNode model. 
com.prosysopc.ua.server Main server side classes of the SDK. 
com.prosysopc.ua.server.io Classes related to dynamically handing Read/Write services. 
com.prosysopc.ua.server.nodes Server side implementation classes for the UaNode model. 
com.prosysopc.ua.types.adi   
com.prosysopc.ua.types.adi.client   
com.prosysopc.ua.types.adi.server   
com.prosysopc.ua.types.di   
com.prosysopc.ua.types.di.client   
com.prosysopc.ua.types.di.server   
com.prosysopc.ua.types.opcua   
com.prosysopc.ua.types.opcua.client   
com.prosysopc.ua.types.opcua.server   
 

Uses of UaVariable in com.prosysopc.ua.client.nodes
 

Classes in com.prosysopc.ua.client.nodes that implement UaVariable
 class UaPropertyImpl
          UaPropertyImpl is the base implementation of the UaProperty.
 class UaVariableImpl
          Straight forward implementation of UaVariable.
 

Uses of UaVariable in com.prosysopc.ua.nodes
 

Subinterfaces of UaVariable in com.prosysopc.ua.nodes
 interface UaProperty
          OPC UA Property.
 

Uses of UaVariable in com.prosysopc.ua.server
 

Methods in com.prosysopc.ua.server with parameters of type UaVariable
protected  void IoManager.checkAccessLevel(ServiceContext serviceContext, Object operationContext, org.opcfoundation.ua.builtintypes.NodeId nodeId, UaVariable variable, org.opcfoundation.ua.core.AccessLevel accessLevel)
          Validate that the node enables access for a certain accessLevel.
protected  EnumSet<org.opcfoundation.ua.core.AccessLevel> IoManager.getAccessLevel(ServiceContext serviceContext, Object operationContext, org.opcfoundation.ua.builtintypes.NodeId nodeId, UaVariable variable)
           
protected  EnumSet<org.opcfoundation.ua.core.AccessLevel> IoManager.getUserAccessLevel(ServiceContext serviceContext, Object operationContext, org.opcfoundation.ua.builtintypes.NodeId nodeId, UaVariable node)
           
 

Uses of UaVariable in com.prosysopc.ua.server.io
 

Methods in com.prosysopc.ua.server.io with parameters of type UaVariable
 EnumSet<org.opcfoundation.ua.core.AccessLevel> TypeIoManagerListener.onGetUserAccessLevel(ServiceContext serviceContext, org.opcfoundation.ua.builtintypes.NodeId nodeId, UaVariable node)
           
 EnumSet<org.opcfoundation.ua.core.AccessLevel> NodeIoManagerListener.onGetUserAccessLevel(ServiceContext serviceContext, org.opcfoundation.ua.builtintypes.NodeId nodeId, UaVariable node)
           
 EnumSet<org.opcfoundation.ua.core.AccessLevel> IoManagerListenerChainImpl.onGetUserAccessLevel(ServiceContext serviceContext, org.opcfoundation.ua.builtintypes.NodeId nodeId, UaVariable node)
           
 EnumSet<org.opcfoundation.ua.core.AccessLevel> IoManagerListener.onGetUserAccessLevel(ServiceContext serviceContext, org.opcfoundation.ua.builtintypes.NodeId nodeId, UaVariable node)
          Notification of a read request for user access level attribute of a node.
 EnumSet<org.opcfoundation.ua.core.AccessLevel> IoManagerAdapter.onGetUserAccessLevel(ServiceContext serviceContext, org.opcfoundation.ua.builtintypes.NodeId nodeId, UaVariable node)
           
 EnumSet<org.opcfoundation.ua.core.AccessLevel> UaTypeIoListenerImpl.onGetUserAccessLevel(ServiceContext serviceContext, UaInstance instance, UaVariable node)
           
 EnumSet<org.opcfoundation.ua.core.AccessLevel> UaTypeIoListener.onGetUserAccessLevel(ServiceContext serviceContext, UaInstance instance, UaVariable node)
          Called from TypeIoManagerListener.onGetUserAccessLevel(com.prosysopc.ua.server.ServiceContext, org.opcfoundation.ua.builtintypes.NodeId, com.prosysopc.ua.nodes.UaVariable).
 

Uses of UaVariable in com.prosysopc.ua.server.nodes
 

Classes in com.prosysopc.ua.server.nodes that implement UaVariable
 class AbstractGeneratedVariableNode
           
 class CacheProperty
          CacheProperty inherited from CacheVariable, which keeps the property value in memory.
 class CacheVariable
          A base implementation of UaVariable with a value cache.
 class CallbackInstanceProperty
          A property version of CallbackInstanceVariable.
 class CallbackInstanceVariable
          An implementation of InstanceVariable.
 class CallbackProperty
          A property node, whose value is retrieved using a callback method only.
 class CallbackVariable
          A variable node, whose value is retrieved using a callback method only.
 class InstanceVariable
          An instance variable is a light-weight implementation of an UaVariable, which actually refers to an InstanceDeclaration of a type node.
 class PlainInstanceProperty<T>
          A property version of PlainInstanceVariable.
 class PlainInstanceVariable<T>
          A very plain, type specific implementation of InstanceVariable.
 class PlainProperty<T>
          A very plain implementation of the UA property node.
 class PlainVariable<T>
          A very plain, type specific implementation of the UA variable node.
 class ReflectiveInstanceProperty
          A property version of ReflectiveInstanceVariable.
 class ReflectiveInstanceVariable
          An InstanceVariable, which is wrapping a property of a Java object, via reflection, to be exposed as an OPC UA Variable.
 class ReflectiveProperty
          A generic property node, which wraps the value of a Java property.
 class ReflectiveVariable
          An OPCUA Variable Node which is wrapping a property of a Java object, via reflection.
 class UaVariableNode
          Abstract base implementation of UaVariable for UA Server side.
 

Constructors in com.prosysopc.ua.server.nodes with parameters of type UaVariable
CallbackInstanceProperty(NodeManagerUaNode nodeManager, org.opcfoundation.ua.builtintypes.NodeId nodeId, UaVariable instanceDeclaration)
          Create a new node, referring to an instance declaration node.
CallbackInstanceVariable(NodeManagerUaNode nodeManager, org.opcfoundation.ua.builtintypes.NodeId nodeId, UaVariable instanceDeclaration)
          Create a new node, referring to an instance declaration node.
InstanceVariable(NodeManagerUaNode nodeManager, org.opcfoundation.ua.builtintypes.NodeId nodeId, UaVariable instanceDeclaration)
          Create a new node, referring to an instance declaration node.
PlainInstanceProperty(NodeManagerUaNode nodeManager, org.opcfoundation.ua.builtintypes.NodeId nodeId, UaVariable instanceDeclaration)
          Create a new node, referring to an instance declaration node.
PlainInstanceVariable(NodeManagerUaNode nodeManager, org.opcfoundation.ua.builtintypes.NodeId nodeId, UaVariable instanceDeclaration)
          Create a new node, referring to an instance declaration node.
ReflectiveInstanceProperty(NodeManagerUaNode nodeManager, org.opcfoundation.ua.builtintypes.NodeId nodeId, Object source, String propertyName, UaVariable instanceDeclaration)
          Create a new node, referring to an instance declaration node.
ReflectiveInstanceVariable(NodeManagerUaNode nodeManager, org.opcfoundation.ua.builtintypes.NodeId nodeId, Object source, String propertyName, UaVariable instanceDeclaration)
          Create a new node, referring to an instance declaration node.
 

Uses of UaVariable in com.prosysopc.ua.types.adi
 

Subinterfaces of UaVariable in com.prosysopc.ua.types.adi
 interface ChemometricModelType
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 interface EngineeringValueType
          Expose key results of an analyser and the associated values that qualified it Generated on 2018-05-09 10:45:32
 interface MVAModelType
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 interface MVAOutputParameterType
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 interface ProcessVariableType
          Provides a stable address space view from the user point of view even if the ADI server address space changes, after the new configuration is loaded.
 

Uses of UaVariable in com.prosysopc.ua.types.adi.client
 

Classes in com.prosysopc.ua.types.adi.client that implement UaVariable
 class ChemometricModelTypeImpl
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 class ChemometricModelTypeImplBase
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 class EngineeringValueTypeImpl
          Expose key results of an analyser and the associated values that qualified it Generated on 2018-05-09 10:45:32
 class EngineeringValueTypeImplBase
          Expose key results of an analyser and the associated values that qualified it Generated on 2018-05-09 10:45:32
 class MVAModelTypeImpl
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 class MVAModelTypeImplBase
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 class MVAOutputParameterTypeImpl
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 class MVAOutputParameterTypeImplBase
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 class ProcessVariableTypeImpl
          Provides a stable address space view from the user point of view even if the ADI server address space changes, after the new configuration is loaded.
 class ProcessVariableTypeImplBase
          Provides a stable address space view from the user point of view even if the ADI server address space changes, after the new configuration is loaded.
 

Uses of UaVariable in com.prosysopc.ua.types.adi.server
 

Classes in com.prosysopc.ua.types.adi.server that implement UaVariable
 class ChemometricModelTypeNode
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 class ChemometricModelTypeNodeBase
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 class EngineeringValueTypeNode
          Expose key results of an analyser and the associated values that qualified it Generated on 2018-05-09 10:46:26
 class EngineeringValueTypeNodeBase
          Expose key results of an analyser and the associated values that qualified it Generated on 2018-05-09 10:46:26
 class MVAModelTypeNode
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 class MVAModelTypeNodeBase
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 class MVAOutputParameterTypeNode
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 class MVAOutputParameterTypeNodeBase
          Hold the descriptions of a mathematical process and associated information to convert scaled data into one or more process values.
 class ProcessVariableTypeNode
          Provides a stable address space view from the user point of view even if the ADI server address space changes, after the new configuration is loaded.
 class ProcessVariableTypeNodeBase
          Provides a stable address space view from the user point of view even if the ADI server address space changes, after the new configuration is loaded.
 

Uses of UaVariable in com.prosysopc.ua.types.di
 

Subinterfaces of UaVariable in com.prosysopc.ua.types.di
 interface UIElementType
          The base type for all UI Element Types.
 

Uses of UaVariable in com.prosysopc.ua.types.di.client
 

Classes in com.prosysopc.ua.types.di.client that implement UaVariable
 class UIElementTypeImpl
          The base type for all UI Element Types.
 class UIElementTypeImplBase
          The base type for all UI Element Types.
 

Uses of UaVariable in com.prosysopc.ua.types.di.server
 

Classes in com.prosysopc.ua.types.di.server that implement UaVariable
 class UIElementTypeNode
          The base type for all UI Element Types.
 class UIElementTypeNodeBase
          The base type for all UI Element Types.
 

Uses of UaVariable in com.prosysopc.ua.types.opcua
 

Subinterfaces of UaVariable in com.prosysopc.ua.types.opcua
 interface AnalogItemType
          Generated on 2018-05-09 10:45:27
 interface ArrayItemType
          Generated on 2018-05-09 10:45:27
 interface BaseDataVariableType
          The type for variable that represents a process value.
 interface BaseVariableType
           
 interface BuildInfoType
          Generated on 2018-05-09 10:45:27
 interface ConditionVariableType
          Generated on 2018-05-09 10:45:27
 interface CubeItemType
          Generated on 2018-05-09 10:45:27
 interface DataItemType
          A variable that contains live automation data.
 interface DataTypeDescriptionType
          The type for variable that represents the description of a data type encoding.
 interface DataTypeDictionaryType
          The type for variable that represents the collection of data type decriptions.
 interface DiscreteItemType
          Generated on 2018-05-09 10:45:27
 interface FiniteStateVariableType
          Generated on 2018-05-09 10:45:27
 interface FiniteTransitionVariableType
          Generated on 2018-05-09 10:45:27
 interface ImageItemType
          Generated on 2018-05-09 10:45:27
 interface MultiStateDiscreteType
          Generated on 2018-05-09 10:45:27
 interface MultiStateValueDiscreteType
          Generated on 2018-05-09 10:45:27
 interface NDimensionArrayItemType
          Generated on 2018-05-09 10:45:27
 interface OptionSetType
          Generated on 2018-05-09 10:45:27
 interface ProgramDiagnosticType
          Generated on 2018-05-09 10:45:27
 interface SamplingIntervalDiagnosticsArrayType
          Generated on 2018-05-09 10:45:27
 interface SamplingIntervalDiagnosticsType
          Generated on 2018-05-09 10:45:27
 interface ServerDiagnosticsSummaryType
          Generated on 2018-05-09 10:45:27
 interface ServerStatusType
          Generated on 2018-05-09 10:45:27
 interface ServerVendorCapabilityType
          Generated on 2018-05-09 10:45:27
 interface SessionDiagnosticsArrayType
          Generated on 2018-05-09 10:45:27
 interface SessionDiagnosticsVariableType
          Generated on 2018-05-09 10:45:27
 interface SessionSecurityDiagnosticsArrayType
          Generated on 2018-05-09 10:45:27
 interface SessionSecurityDiagnosticsType
          Generated on 2018-05-09 10:45:27
 interface StateVariableType
          Generated on 2018-05-09 10:45:27
 interface SubscriptionDiagnosticsArrayType
          Generated on 2018-05-09 10:45:27
 interface SubscriptionDiagnosticsType
          Generated on 2018-05-09 10:45:27
 interface TransitionVariableType
          Generated on 2018-05-09 10:45:27
 interface TwoStateDiscreteType
          Generated on 2018-05-09 10:45:27
 interface TwoStateVariableType
          Generated on 2018-05-09 10:45:27
 interface XYArrayItemType
          Generated on 2018-05-09 10:45:27
 interface YArrayItemType
          Generated on 2018-05-09 10:45:27
 

Uses of UaVariable in com.prosysopc.ua.types.opcua.client
 

Classes in com.prosysopc.ua.types.opcua.client that implement UaVariable
 class AnalogItemTypeImpl
          Generated on 2018-05-09 10:45:27
 class AnalogItemTypeImplBase
          Generated on 2018-05-09 10:45:27
 class ArrayItemTypeImpl
          Generated on 2018-05-09 10:45:27
 class ArrayItemTypeImplBase
          Generated on 2018-05-09 10:45:27
 class BaseDataVariableTypeImpl
          The type for variable that represents a process value.
 class BaseDataVariableTypeImplBase
          The type for variable that represents a process value.
 class BaseVariableTypeImpl
           
 class BuildInfoTypeImpl
          Generated on 2018-05-09 10:45:27
 class BuildInfoTypeImplBase
          Generated on 2018-05-09 10:45:27
 class ConditionVariableTypeImpl
          Generated on 2018-05-09 10:45:27
 class ConditionVariableTypeImplBase
          Generated on 2018-05-09 10:45:27
 class CubeItemTypeImpl
          Generated on 2018-05-09 10:45:27
 class CubeItemTypeImplBase
          Generated on 2018-05-09 10:45:27
 class DataItemTypeImpl
          A variable that contains live automation data.
 class DataItemTypeImplBase
          A variable that contains live automation data.
 class DataTypeDescriptionTypeImpl
          The type for variable that represents the description of a data type encoding.
 class DataTypeDescriptionTypeImplBase
          The type for variable that represents the description of a data type encoding.
 class DataTypeDictionaryTypeImpl
          The type for variable that represents the collection of data type decriptions.
 class DataTypeDictionaryTypeImplBase
          The type for variable that represents the collection of data type decriptions.
 class DiscreteItemTypeImpl
          Generated on 2018-05-09 10:45:27
 class DiscreteItemTypeImplBase
          Generated on 2018-05-09 10:45:27
 class FiniteStateVariableTypeImpl
          Generated on 2018-05-09 10:45:27
 class FiniteStateVariableTypeImplBase
          Generated on 2018-05-09 10:45:27
 class FiniteTransitionVariableTypeImpl
          Generated on 2018-05-09 10:45:27
 class FiniteTransitionVariableTypeImplBase
          Generated on 2018-05-09 10:45:27
 class ImageItemTypeImpl
          Generated on 2018-05-09 10:45:27
 class ImageItemTypeImplBase
          Generated on 2018-05-09 10:45:27
 class MultiStateDiscreteTypeImpl
          Generated on 2018-05-09 10:45:27
 class MultiStateDiscreteTypeImplBase
          Generated on 2018-05-09 10:45:27
 class MultiStateValueDiscreteTypeImpl
          Generated on 2018-05-09 10:45:27
 class MultiStateValueDiscreteTypeImplBase
          Generated on 2018-05-09 10:45:27
 class NDimensionArrayItemTypeImpl
          Generated on 2018-05-09 10:45:27
 class NDimensionArrayItemTypeImplBase
          Generated on 2018-05-09 10:45:27
 class OptionSetTypeImpl
          Generated on 2018-05-09 10:45:27
 class OptionSetTypeImplBase
          Generated on 2018-05-09 10:45:27
 class ProgramDiagnosticTypeImpl
          Generated on 2018-05-09 10:45:27
 class ProgramDiagnosticTypeImplBase
          Generated on 2018-05-09 10:45:27
 class SamplingIntervalDiagnosticsArrayTypeImpl
          Generated on 2018-05-09 10:45:27
 class SamplingIntervalDiagnosticsArrayTypeImplBase
          Generated on 2018-05-09 10:45:27
 class SamplingIntervalDiagnosticsTypeImpl
          Generated on 2018-05-09 10:45:27
 class SamplingIntervalDiagnosticsTypeImplBase
          Generated on 2018-05-09 10:45:27
 class ServerDiagnosticsSummaryTypeImpl
          Generated on 2018-05-09 10:45:27
 class ServerDiagnosticsSummaryTypeImplBase
          Generated on 2018-05-09 10:45:27
 class ServerStatusTypeImpl
          Generated on 2018-05-09 10:45:27
 class ServerStatusTypeImplBase
          Generated on 2018-05-09 10:45:27
 class ServerVendorCapabilityTypeImpl
          Generated on 2018-05-09 10:45:27
 class ServerVendorCapabilityTypeImplBase
          Generated on 2018-05-09 10:45:27
 class SessionDiagnosticsArrayTypeImpl
          Generated on 2018-05-09 10:45:27
 class SessionDiagnosticsArrayTypeImplBase
          Generated on 2018-05-09 10:45:27
 class SessionDiagnosticsVariableTypeImpl
          Generated on 2018-05-09 10:45:27
 class SessionDiagnosticsVariableTypeImplBase
          Generated on 2018-05-09 10:45:27
 class SessionSecurityDiagnosticsArrayTypeImpl
          Generated on 2018-05-09 10:45:27
 class SessionSecurityDiagnosticsArrayTypeImplBase
          Generated on 2018-05-09 10:45:27
 class SessionSecurityDiagnosticsTypeImpl
          Generated on 2018-05-09 10:45:27
 class SessionSecurityDiagnosticsTypeImplBase
          Generated on 2018-05-09 10:45:27
 class StateVariableTypeImpl
          Generated on 2018-05-09 10:45:27
 class StateVariableTypeImplBase
          Generated on 2018-05-09 10:45:27
 class SubscriptionDiagnosticsArrayTypeImpl
          Generated on 2018-05-09 10:45:27
 class SubscriptionDiagnosticsArrayTypeImplBase
          Generated on 2018-05-09 10:45:27
 class SubscriptionDiagnosticsTypeImpl
          Generated on 2018-05-09 10:45:27
 class SubscriptionDiagnosticsTypeImplBase
          Generated on 2018-05-09 10:45:27
 class TransitionVariableTypeImpl
          Generated on 2018-05-09 10:45:27
 class TransitionVariableTypeImplBase
          Generated on 2018-05-09 10:45:27
 class TwoStateDiscreteTypeImpl
          Generated on 2018-05-09 10:45:27
 class TwoStateDiscreteTypeImplBase
          Generated on 2018-05-09 10:45:27
 class TwoStateVariableTypeImpl
          Generated on 2018-05-09 10:45:27
 class TwoStateVariableTypeImplBase
          Generated on 2018-05-09 10:45:27
 class XYArrayItemTypeImpl
          Generated on 2018-05-09 10:45:27
 class XYArrayItemTypeImplBase
          Generated on 2018-05-09 10:45:27
 class YArrayItemTypeImpl
          Generated on 2018-05-09 10:45:27
 class YArrayItemTypeImplBase
          Generated on 2018-05-09 10:45:27
 

Uses of UaVariable in com.prosysopc.ua.types.opcua.server
 

Classes in com.prosysopc.ua.types.opcua.server that implement UaVariable
 class AnalogItemTypeNode
          Generated on 2018-05-09 10:46:24
 class AnalogItemTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class ArrayItemTypeNode
          Generated on 2018-05-09 10:46:24
 class ArrayItemTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class BaseDataVariableTypeNode
          The type for variable that represents a process value.
 class BaseDataVariableTypeNodeBase
          The type for variable that represents a process value.
 class BaseVariableTypeNode
           
 class BuildInfoTypeNode
          Generated on 2018-05-09 10:46:24
 class BuildInfoTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class ConditionVariableTypeNode
          Generated on 2018-05-09 10:46:24
 class ConditionVariableTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class CubeItemTypeNode
          Generated on 2018-05-09 10:46:24
 class CubeItemTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class DataItemTypeNode
          A variable that contains live automation data.
 class DataItemTypeNodeBase
          A variable that contains live automation data.
 class DataTypeDescriptionTypeNode
          The type for variable that represents the description of a data type encoding.
 class DataTypeDescriptionTypeNodeBase
          The type for variable that represents the description of a data type encoding.
 class DataTypeDictionaryTypeNode
          The type for variable that represents the collection of data type decriptions.
 class DataTypeDictionaryTypeNodeBase
          The type for variable that represents the collection of data type decriptions.
 class DiscreteItemTypeNode
          Generated on 2018-05-09 10:46:24
 class DiscreteItemTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class FiniteStateVariableTypeNode
          Generated on 2018-05-09 10:46:24
 class FiniteStateVariableTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class FiniteTransitionVariableTypeNode
           
 class FiniteTransitionVariableTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class ImageItemTypeNode
          Generated on 2018-05-09 10:46:24
 class ImageItemTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class MultiStateDiscreteTypeNode
          Generated on 2018-05-09 10:46:24
 class MultiStateDiscreteTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class MultiStateValueDiscreteTypeNode
          Generated on 2018-05-09 10:46:24
 class MultiStateValueDiscreteTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class NDimensionArrayItemTypeNode
          Generated on 2018-05-09 10:46:24
 class NDimensionArrayItemTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class OptionSetTypeNode
          Generated on 2018-05-09 10:46:24
 class OptionSetTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class ProgramDiagnosticTypeNode
          Generated on 2018-05-09 10:46:24
 class ProgramDiagnosticTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class SamplingIntervalDiagnosticsArrayTypeNode
          Generated on 2018-05-09 10:46:24
 class SamplingIntervalDiagnosticsArrayTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class SamplingIntervalDiagnosticsTypeNode
          Generated on 2018-05-09 10:46:24
 class SamplingIntervalDiagnosticsTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class ServerDiagnosticsSummaryTypeNode
           
 class ServerDiagnosticsSummaryTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class ServerStatusTypeNode
           
 class ServerStatusTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class ServerVendorCapabilityTypeNode
          Generated on 2018-05-09 10:46:24
 class ServerVendorCapabilityTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class SessionDiagnosticsArrayTypeNode
          Generated on 2018-05-09 10:46:24
 class SessionDiagnosticsArrayTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class SessionDiagnosticsVariableTypeNode
          Generated on 2018-05-09 10:46:24
 class SessionDiagnosticsVariableTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class SessionSecurityDiagnosticsArrayTypeNode
          Generated on 2018-05-09 10:46:24
 class SessionSecurityDiagnosticsArrayTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class SessionSecurityDiagnosticsTypeNode
           
 class SessionSecurityDiagnosticsTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class StateVariableTypeNode
          Generated on 2018-05-09 10:46:24
 class StateVariableTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class SubscriptionDiagnosticsArrayTypeNode
           
 class SubscriptionDiagnosticsArrayTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class SubscriptionDiagnosticsTypeNode
          Generated on 2018-05-09 10:46:24
 class SubscriptionDiagnosticsTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class TransitionVariableTypeNode
          Generated on 2018-05-09 10:46:24
 class TransitionVariableTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class TwoStateDiscreteTypeNode
          Generated on 2018-05-09 10:46:24
 class TwoStateDiscreteTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class TwoStateVariableTypeNode
           
 class TwoStateVariableTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class XYArrayItemTypeNode
          Generated on 2018-05-09 10:46:24
 class XYArrayItemTypeNodeBase
          Generated on 2018-05-09 10:46:24
 class YArrayItemTypeNode
          Generated on 2018-05-09 10:46:24
 class YArrayItemTypeNodeBase
          Generated on 2018-05-09 10:46:24
 

Methods in com.prosysopc.ua.types.opcua.server that return UaVariable
 UaVariable AlarmConditionTypeNode.getInput()
          The InputNode of the alarm.
 

Methods in com.prosysopc.ua.types.opcua.server with parameters of type UaVariable
 void AlarmConditionTypeNode.setInput(UaVariable node)
          Define the InputNode of the Alarm.
 



Copyright © 2018. All rights reserved.