public static <T> void transitionName(NimbusData data, String topologyName,
boolean errorOnNoTransition, StatusType transition_status, T... args) throws NotAliveException {
StormClusterState stormClusterState = data.getStormClusterState();
String topologyId = Common.get_storm_id(stormClusterState, topologyName);
if (topologyId == null){
throw new NotAliveException(topologyName);
}
transition(data, topologyId, errorOnNoTransition, transition_status, args);
}