Search in sources :

Example 1 with AASIdentifierTypeDataType

use of opc.i4aas.AASIdentifierTypeDataType in project FAAAST-Service by FraunhoferIOSB.

the class AASIdentifierTypeImplBase method getIdType.

@Mandatory
@Override
public AASIdentifierTypeDataType getIdType() {
    UaVariable node = getIdTypeNode();
    if (node == null) {
        return null;
    }
    Variant value = node.getValue().getValue();
    return (AASIdentifierTypeDataType) value.asEnum(AASIdentifierTypeDataType.class);
}
Also used : Variant(com.prosysopc.ua.stack.builtintypes.Variant) UaVariable(com.prosysopc.ua.nodes.UaVariable) AASIdentifierTypeDataType(opc.i4aas.AASIdentifierTypeDataType) Mandatory(com.prosysopc.ua.nodes.Mandatory)

Example 2 with AASIdentifierTypeDataType

use of opc.i4aas.AASIdentifierTypeDataType in project FAAAST-Service by FraunhoferIOSB.

the class AASIdentifierTypeNodeBase method getIdType.

@Mandatory
@Override
public AASIdentifierTypeDataType getIdType() {
    UaVariable node = getIdTypeNode();
    if (node == null) {
        throw new RuntimeException("Mandatory node IdType does not exist");
    }
    Variant value = node.getValue().getValue();
    return (AASIdentifierTypeDataType) value.asEnum(AASIdentifierTypeDataType.class);
}
Also used : Variant(com.prosysopc.ua.stack.builtintypes.Variant) UaVariable(com.prosysopc.ua.nodes.UaVariable) AASIdentifierTypeDataType(opc.i4aas.AASIdentifierTypeDataType) Mandatory(com.prosysopc.ua.nodes.Mandatory)

Aggregations

Mandatory (com.prosysopc.ua.nodes.Mandatory)2 UaVariable (com.prosysopc.ua.nodes.UaVariable)2 Variant (com.prosysopc.ua.stack.builtintypes.Variant)2 AASIdentifierTypeDataType (opc.i4aas.AASIdentifierTypeDataType)2