public class Plus.People
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
class |
Plus.People.Get |
class |
Plus.People.List |
class |
Plus.People.ListByActivity |
class |
Plus.People.Search |
Constructor and Description |
---|
People() |
Modifier and Type | Method and Description |
---|---|
Plus.People.Get |
get(java.lang.String userId)
Get a person's profile.
|
Plus.People.List |
list(java.lang.String userId,
java.lang.String collection)
List all of the people in the specified collection.
|
Plus.People.ListByActivity |
listByActivity(java.lang.String activityId,
java.lang.String collection)
List all of the people in the specified collection for a particular activity.
|
Plus.People.Search |
search(java.lang.String query)
Search all public profiles.
|
public Plus.People.Get get(java.lang.String userId) throws java.io.IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.userId
- The ID of the person to get the profile for. The special value "me" can be used to indicate the
authenticated user.java.io.IOException
public Plus.People.List list(java.lang.String userId, java.lang.String collection) throws java.io.IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.userId
- Get the collection of people for the person identified. Use "me" to indicate the authenticated user.collection
- The collection of people to list.java.io.IOException
public Plus.People.ListByActivity listByActivity(java.lang.String activityId, java.lang.String collection) throws java.io.IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.activityId
- The ID of the activity to get the list of people for.collection
- The collection of people to list.java.io.IOException
public Plus.People.Search search(java.lang.String query) throws java.io.IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.query
- Specify a query string for full text search of public text in all profiles.java.io.IOException