if( sPhotosets != "" )
{
PhotosetsInterface photosetsI = flickr.getPhotosetsInterface();
Photosets photosets = null;
try
{
photosets = photosetsI.getList(userToken);
}
catch (Exception e) //IOException e2, SAXException e2, FlickrException e2) {
{
e.printStackTrace();
return null;
}
if( photosets != null )
{
// If we have a list of photosets, just get the photos from there.
@SuppressWarnings("unchecked")
Collection<Photoset> photosetCollection = photosets.getPhotosets();
PhotoList photosetsPhotoList = new PhotoList();
String[] photosetsNamesArray = sPhotosets.split(";");