Examples of FlickrAPIProperties


Examples of org.corrib.treemaps.source.FlickrAPIProperties

   * @return <tt>FlickrAPIProperties</tt> api properties for the given service address
   */
  public FlickrAPIProperties getApiProperties(String serviceAddress){
    synchronized(propertiesMap){
      if(!propertiesMap.containsKey(serviceAddress)){
        FlickrAPIProperties apiProperties;
        String apiKey = prop.getProperty(serviceAddress+"_apiKey");
        String sharedSecret = prop.getProperty(serviceAddress+"_sharedSecret");
        String authStoreDir = prop.getProperty(serviceAddress+"_authStoreDir");
       
        if(apiKey == null || sharedSecret == null || authStoreDir == null){
          throw new IllegalArgumentException("Flickr API Properties not set for the given service : " + serviceAddress);
        }
        apiProperties = new FlickrAPIProperties(apiKey, sharedSecret,authStoreDir);
        propertiesMap.put(serviceAddress, apiProperties);
        logger.info("Setting APIKey: " + apiKey);
        return apiProperties;
      }
      return propertiesMap.get(serviceAddress);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.