All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cryptacular.io.URLResource Maven / Gradle / Ivy

There is a newer version: 6.2.20
Show newest version
/* See LICENSE for licensing and NOTICE for copyright. */
package org.cryptacular.io;

import java.io.IOException;
import java.io.InputStream;
import java.net.URL;

/**
 * Describes a (presumably remote) resource accessible via URL.
 *
 * @author  Middleware Services
 */
public class URLResource implements Resource
{

  /** Location of resource. */
  private URL url;


  /**
   * Creates a new URL resource.
   *
   * @param  url  Non-null URL where resource is located.
   */
  public URLResource(final URL url)
  {
    if (url == null) {
      throw new IllegalArgumentException("URL cannot be null.");
    }
    this.url = url;
  }


  @Override
  public InputStream getInputStream()
    throws IOException
  {
    return url.openStream();
  }


  @Override
  public String toString()
  {
    return url.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy