@Override
 public List<? extends com.bradmcevoy.http.Resource> getChildren()
     throws NotAuthorizedException, BadRequestException {
   try {
     return remoteManager.getChildren(getHostName(), folder);
   } catch (IOException ex) {
     throw new RuntimeException(ex);
   } catch (HttpException ex) {
     throw new RuntimeException(ex);
   }
 }