Response response = executeMessage(ExecMessage.GET_ACTION_LIST, null);
ActionInfoList.Builder builder = ActionInfoList.newBuilder();
buildPayload(response, builder);
ActionInfoList infoList = builder.build();
Set<String> actions = new CaseInsensitiveStringSet();
for (ActionInfo info : infoList.getActionInfoListList()) {
actions.add(info.getName());
}
return actions;
}