public String isPendingMember() returns true if the current
user has requested to join this site.
Parameters
None
Returns
Returns true if the current user has requested to join the site. If the site is not moderated this will return false.
Example
SiteService ss = session.getServiceRegistry() .getSiteService(); Site site = ss.getSite("testsite"); Log.d(TAG, "isPendingMember: " + site.isPendingMember());
Would result in output such as the following:
isPendingMember: False
Note: This method was added in version 1.1.