/**
  * Create an {@link HttpURLConnection} that is set up with the security information to connect to
  * massive using the versioned URL as the base URL
  *
  * @param path The path within massive to connect to (note this does not need the API key or base
  *     path of "/ma/v1")
  * @return The {@link HttpURLConnection}
  * @throws IOException
  */
 private HttpURLConnection createHttpURLConnectionToMassive(String path) throws IOException {
   return createHttpURLConnection(loginInfo.getRepositoryUrl() + path);
 }