use of de.fraunhofer.iosb.ilt.faaast.service.endpoint.opcua.listener.AasServiceMethodManagerListener in project FAAAST-Service by FraunhoferIOSB.
the class AasServiceNodeManager method createAddressSpace.
/**
* Creates the address space of the OPC UA Server.
*/
private void createAddressSpace() {
try {
logger.info("createAddressSpace");
aasMethodManagerListener = new AasServiceMethodManagerListener(endpoint, this);
createAasNodes();
subscribeMessageBus();
} catch (Throwable ex) {
logger.error("createAddressSpace Exception", ex);
}
}
Aggregations