Package org.benow.java.rest

Examples of org.benow.java.rest.DocumentLoader


    super();
    if (apiKey == null)
      throw new NullPointerException("Error, an apiKey must be given.  Specify directly in constructor, set the API_KEY field or provide an apiKey system property (-DapiKey=1234)");

    try {
      loader = new DocumentLoader(new URL("http://discogs.com"));
      loader.setCharset(Charset.forName("UTF-8"));
      loader.setLoadInterval(1000);
      loader.setUserAgent("discogs-java/0.01 +http://benow.ca/projects/discogs-java");

      setCacheEnabled(cacheEnabled);
View Full Code Here

TOP

Related Classes of org.benow.java.rest.DocumentLoader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.