use of org.apache.whirr.service.jclouds.RunUrlStatement in project whirr by apache.
the class ClusterActionHandlerSupport method addRunUrl.
/**
* A convenience method for adding a {@link RunUrlStatement} to a
* {@link ClusterActionEvent}.
*/
public static void addRunUrl(ClusterActionEvent event, String runUrl, String... args) throws IOException {
Statement statement = new RunUrlStatement(event.getClusterSpec().getRunUrlBase(), runUrl, args);
addStatement(event, statement);
}
Aggregations