infrastructure-tests/src/test/java/org/gcube/informationsystem/resource_checker/utils/SendNotification.java

22 lines
582 B
Java

package org.gcube.informationsystem.resource_checker.utils;
import java.util.Map;
import org.gcube.vremanagement.executor.plugin.PluginStateEvolution;
import org.gcube.vremanagement.executor.plugin.PluginStateNotification;
public class SendNotification extends PluginStateNotification{
public SendNotification(Map<String, String> inputs) {
super(inputs);
// TODO Auto-generated constructor stub
}
@Override
public void pluginStateEvolution(PluginStateEvolution pluginStateEvolution, Exception exception) throws Exception {
// TODO Auto-generated method stub
}
}