use of org.smartdata.protocol.AdminServerProto.ListActionsSupportedRequestProto in project SSM by Intel-bigdata.
the class AdminProtocolClientSideTranslator method listActionsSupported.
@Override
public List<ActionDescriptor> listActionsSupported() throws IOException {
ListActionsSupportedRequestProto req = ListActionsSupportedRequestProto.newBuilder().build();
try {
List<ActionDescriptorProto> prolist = rpcProxy.listActionsSupported(null, req).getActDesListList();
List<ActionDescriptor> list = new ArrayList<>();
for (ActionDescriptorProto a : prolist) {
list.add(ProtoBufferHelper.convert(a));
}
return list;
} catch (ServiceException e) {
throw ProtoBufferHelper.getRemoteException(e);
}
}
Aggregations