import java.io.IOException;
public class ActionRenderer extends OUICommandRenderer {
@Override
public void encodeBegin(FacesContext context, UIComponent component) throws IOException {
Action action = (Action) component;
if (action.isStandalone())
encodeStandaloneInvocationMode(context, action);
}