@Override public ModifyAclEntriesResponseProto modifyAclEntries( RpcController controller, ModifyAclEntriesRequestProto req) throws ServiceException { try { server.modifyAclEntries(req.getSrc(), PBHelper.convertAclEntry(req.getAclSpecList())); } catch (IOException e) { throw new ServiceException(e); } return VOID_MODIFYACLENTRIES_RESPONSE; }
@Override public void modifyAclEntries(String src, List<AclEntry> aclSpec) throws IOException { ModifyAclEntriesRequestProto req = ModifyAclEntriesRequestProto .newBuilder().setSrc(src) .addAllAclSpec(PBHelper.convertAclEntryProto(aclSpec)).build(); try { rpcProxy.modifyAclEntries(null, req); } catch (ServiceException e) { throw ProtobufHelper.getRemoteException(e); } }
@Override public void modifyAclEntries(String src, List<AclEntry> aclSpec) throws IOException { ModifyAclEntriesRequestProto req = ModifyAclEntriesRequestProto .newBuilder().setSrc(src) .addAllAclSpec(PBHelperClient.convertAclEntryProto(aclSpec)).build(); try { rpcProxy.modifyAclEntries(null, req); } catch (ServiceException e) { throw ProtobufHelper.getRemoteException(e); } }
@Override public ModifyAclEntriesResponseProto modifyAclEntries( RpcController controller, ModifyAclEntriesRequestProto req) throws ServiceException { try { server.modifyAclEntries(req.getSrc(), PBHelperClient.convertAclEntry(req.getAclSpecList())); } catch (IOException e) { throw new ServiceException(e); } return VOID_MODIFYACLENTRIES_RESPONSE; }