Package com.aetrion.flickr.people

Examples of com.aetrion.flickr.people.PeopleInterface


        return poolsInterface;
    }

    public PeopleInterface getPeopleInterface() {
        if (peopleInterface == null) {
            peopleInterface = new PeopleInterface(apiKey, sharedSecret, transport);
        }
        return peopleInterface;
    }
View Full Code Here


        newPhotoList = photosetsPhotoList;
      }
    }
    else
    {
      PeopleInterface pi = flickr.getPeopleInterface();
     
      try
      {
        newPhotoList = pi.getPublicPhotos(userToken, photoCount,1);
      }
      catch( Exception e) //catch (IOException e), catch (SAXException e), catch (FlickrException e)
      {
        e.printStackTrace();
        return null;
View Full Code Here

TOP

Related Classes of com.aetrion.flickr.people.PeopleInterface

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.