Interface IAASAPIObserver
-
- All Superinterfaces:
IObserver
- All Known Implementing Classes:
MqttAASAPIObserver
public interface IAASAPIObserver extends IObserver
Observer for the AASAPI that triggers MQTT events for different operations on the AAS.- Author:
- fried
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
submodelAdded(IReference submodel)
Is called when a submodel reference is addedvoid
submodelRemoved(String idShort)
Is called when a submodel reference is removed
-
-
-
Method Detail
-
submodelAdded
void submodelAdded(IReference submodel)
Is called when a submodel reference is added- Parameters:
submodel
- the reference to the submodel
-
submodelRemoved
void submodelRemoved(String idShort)
Is called when a submodel reference is removed- Parameters:
idShort
- the idShort of the removed element
-
-