public static void cleanUpStagingRequest(long stagingRequestId) throws RemoteException {
    try {
      StagingServiceUtil.cleanUpStagingRequest(stagingRequestId);
    } catch (Exception e) {
      _log.error(e, e);

      throw new RemoteException(e.getMessage());
    }
  }
  public static void updateStagingRequest(
      long stagingRequestId, java.lang.String fileName, byte[] bytes) throws RemoteException {
    try {
      StagingServiceUtil.updateStagingRequest(stagingRequestId, fileName, bytes);
    } catch (Exception e) {
      _log.error(e, e);

      throw new RemoteException(e.getMessage());
    }
  }
  public static long createStagingRequest(long groupId, java.lang.String checksum)
      throws RemoteException {
    try {
      long returnValue = StagingServiceUtil.createStagingRequest(groupId, checksum);

      return returnValue;
    } catch (Exception e) {
      _log.error(e, e);

      throw new RemoteException(e.getMessage());
    }
  }