TriggerAction.java

16 lines | 207 B Blame History Raw Download
package azkaban.trigger;

public interface TriggerAction {
	
	String getType();
	
	TriggerAction fromJson(Object obj);
	
	Object toJson();
	
	void doAction() throws Exception;

	String getDescription();
	
}