use of org.iobserve.stages.data.Warnings in project iobserve-analysis by research-iobserve.
the class PrivacyWarner method execute.
@Override
protected void execute() throws Exception {
final Warnings warnings = new Warnings();
final PCMDeployedEvent deployedEvent = this.deployedInputPort.receive();
final PCMUndeployedEvent undeployedEvent = this.undeployedInputPort.receive();
if (deployedEvent != null) {
// TODO generate warnings after the last deployment
} else if (undeployedEvent != null) {
// TODO generate warnings after the last undeployment
}
this.probesOutputPort.send(warnings);
this.warningsOutputPort.send(warnings);
}
Aggregations