package com.jazzautomation.customaction; /** * Custom action interface */ public interface Action { String fire() throws Exception; }