Interface PlatformManagementInterface
- All Superinterfaces:
PlatformManagementInterfaceNotifier
,PlatformManagementInterfaceReader
public interface PlatformManagementInterface
extends PlatformManagementInterfaceReader, PlatformManagementInterfaceNotifier
This interface represent the PlatformManagementInterface component in the Abstract Architecture.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
registerToPlatform
(URI platformUrl, String currentDtd) This method allows the component to send the registration request to the passed WoDT Digital Twins Platform.void
Signal to the Platform Management Interface the deletion of the managed Digital Twin.Methods inherited from interface io.github.webbasedwodt.application.component.PlatformManagementInterfaceNotifier
notifyNewRegistration
Methods inherited from interface io.github.webbasedwodt.application.component.PlatformManagementInterfaceReader
getRegisteredPlatformUrls
-
Method Details
-
registerToPlatform
This method allows the component to send the registration request to the passed WoDT Digital Twins Platform.- Parameters:
platformUrl
- the platformUrl to which registercurrentDtd
- the current Digital Twin Descriptor- Returns:
- true if correctly registered, false instead
-
signalDigitalTwinDeletion
void signalDigitalTwinDeletion()Signal to the Platform Management Interface the deletion of the managed Digital Twin. This will result in the deletion notification to be sent to all the WoDT Digital Twins Platform to which it is registered.
-