本文整理汇总了Java中com.flickr4java.flickr.Flickr.getPeopleInterface方法的典型用法代码示例。如果您正苦于以下问题:Java Flickr.getPeopleInterface方法的具体用法?Java Flickr.getPeopleInterface怎么用?Java Flickr.getPeopleInterface使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.flickr4java.flickr.Flickr
的用法示例。
在下文中一共展示了Flickr.getPeopleInterface方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: queryFlickrOnUserEmail
import com.flickr4java.flickr.Flickr; //导入方法依赖的package包/类
/**
* Having what we presume is an email, query Flickr for the UserId string
*
* @param presumedEmail
* @return Flickr user's Id string if found, otherwise null
* @throws FlickrException Flickr throws with a user not found message if
* such applies
*/
private String queryFlickrOnUserEmail(Flickr flickr, String presumedEmail) throws FlickrException
{
String flickrUserId = null;
PeopleInterface pi = flickr.getPeopleInterface();
User flickrUser = null;
try
{
flickrUser = pi.findByEmail(presumedEmail);
}
catch( FlickrException fe ) // NOSONAR - throw these in the raw, wrap
// any others
{
throw fe;
}
catch( Exception e )
{
throw Throwables.propagate(e);
}
if( flickrUser != null )
{
flickrUserId = flickrUser.getId();
}
return flickrUserId;
}
示例2: queryFlickrOnUsername
import com.flickr4java.flickr.Flickr; //导入方法依赖的package包/类
/**
* Having what we presume is an email, query Flickr for the UserId string
*
* @param presumedEmail
* @return Flickr user's Id string if found, otherwise null
* @throws FlickrException Flickr throws with a user not found message if
* such applies
*/
private String queryFlickrOnUsername(Flickr flickr, String presumedUsername) throws FlickrException
{
String flickrUserId = null;
PeopleInterface pi = flickr.getPeopleInterface();
User flickrUser = null;
try
{
flickrUser = pi.findByUsername(presumedUsername);
}
catch( FlickrException fe ) // NOSONAR - throw these in the raw, wrap
// any others
{
throw fe;
}
catch( Exception e )
{
throw Throwables.propagate(e);
}
if( flickrUser != null )
{
flickrUserId = flickrUser.getId();
}
return flickrUserId;
}