Uses of Interface
com.google.code.linkedinapi.schema.Person

Packages that use Person
com.google.code.linkedinapi.client   
com.google.code.linkedinapi.client.examples   
com.google.code.linkedinapi.client.impl   
com.google.code.linkedinapi.schema   
com.google.code.linkedinapi.schema.impl   
com.google.code.linkedinapi.schema.xpp   
 

Uses of Person in com.google.code.linkedinapi.client
 

Methods in com.google.code.linkedinapi.client that return Person
 Person LinkedInApiClient.getProfileByApiRequest(ApiStandardProfileRequest apiRequest)
          Gets the profile by API request.
 Person LinkedInApiClient.getProfileById(java.lang.String id)
          Gets the profile by id.
 Person LinkedInApiClient.getProfileById(java.lang.String id, java.util.Set<ProfileField> profileFields)
          Gets the profile by id.
 Person LinkedInApiClient.getProfileByUrl(java.lang.String url, ProfileType profileType)
          Gets the profile by url.
 Person LinkedInApiClient.getProfileByUrl(java.lang.String url, ProfileType profileType, java.util.Set<ProfileField> profileFields)
          Gets the profile by url.
 Person LinkedInApiClient.getProfileForCurrentUser()
          Gets the profile for current user.
 Person LinkedInApiClient.getProfileForCurrentUser(java.util.Set<ProfileField> profileFields)
          Gets the profile for current user.
 

Methods in com.google.code.linkedinapi.client that return types with arguments of type Person
 java.util.concurrent.Future<Person> AsyncLinkedInApiClient.getProfileByApiRequest(ApiStandardProfileRequest apiRequest)
          Gets the profile by API request.
 java.util.concurrent.Future<Person> AsyncLinkedInApiClient.getProfileById(java.lang.String id)
          Gets the profile by id.
 java.util.concurrent.Future<Person> AsyncLinkedInApiClient.getProfileById(java.lang.String id, java.util.Set<ProfileField> profileFields)
          Gets the profile by id.
 java.util.concurrent.Future<Person> AsyncLinkedInApiClient.getProfileByUrl(java.lang.String url, ProfileType profileType)
          Gets the profile by url.
 java.util.concurrent.Future<Person> AsyncLinkedInApiClient.getProfileByUrl(java.lang.String url, ProfileType profileType, java.util.Set<ProfileField> profileFields)
          Gets the profile by url.
 java.util.concurrent.Future<Person> AsyncLinkedInApiClient.getProfileForCurrentUser()
          Gets the profile for current user.
 java.util.concurrent.Future<Person> AsyncLinkedInApiClient.getProfileForCurrentUser(java.util.Set<ProfileField> profileFields)
          Gets the profile for current user.
 

Methods in com.google.code.linkedinapi.client with parameters of type Person
 void LinkedInApiClient.sendInviteToPerson(Person recepient, java.lang.String subject, java.lang.String message)
          Send invite.
 java.util.concurrent.Future<?> AsyncLinkedInApiClient.sendInviteToPerson(Person recepient, java.lang.String subject, java.lang.String message)
          Send invite.
 void AsyncHandlerLinkedInApiClient.sendInviteToPerson(Person recepient, java.lang.String subject, java.lang.String message, AsyncResponseHandler<?> handler)
          Send invite.
 

Method parameters in com.google.code.linkedinapi.client with type arguments of type Person
 void AsyncHandlerLinkedInApiClient.getProfileByApiRequest(ApiStandardProfileRequest apiRequest, AsyncResponseHandler<Person> handler)
          Gets the profile by API request.
 void AsyncHandlerLinkedInApiClient.getProfileById(java.lang.String id, AsyncResponseHandler<Person> handler)
          Gets the profile by id.
 void AsyncHandlerLinkedInApiClient.getProfileById(java.lang.String id, java.util.Set<ProfileField> profileFields, AsyncResponseHandler<Person> handler)
          Gets the profile by id.
 void AsyncHandlerLinkedInApiClient.getProfileByUrl(java.lang.String url, ProfileType profileType, AsyncResponseHandler<Person> handler)
          Gets the profile by url.
 void AsyncHandlerLinkedInApiClient.getProfileByUrl(java.lang.String url, ProfileType profileType, java.util.Set<ProfileField> profileFields, AsyncResponseHandler<Person> handler)
          Gets the profile by url.
 void AsyncHandlerLinkedInApiClient.getProfileForCurrentUser(AsyncResponseHandler<Person> handler)
          Gets the profile for current user.
 void AsyncHandlerLinkedInApiClient.getProfileForCurrentUser(java.util.Set<ProfileField> profileFields, AsyncResponseHandler<Person> handler)
          Gets the profile for current user.
 

Uses of Person in com.google.code.linkedinapi.client.examples
 

Methods in com.google.code.linkedinapi.client.examples with parameters of type Person
private static void ProfileApiExample.printResult(Person profile)
          Print the result of API call.
private static void OAuthAuthenticationExample.printResult(Person profile)
          Print the result of API call.
private static void AsyncApiExample.printResult(Person profile)
          Print the result of API call.
 

Uses of Person in com.google.code.linkedinapi.client.impl
 

Methods in com.google.code.linkedinapi.client.impl that return Person
 Person BaseLinkedInApiClient.getProfileByApiRequest(ApiStandardProfileRequest apiRequest)
          Gets the profile by API request.
 Person BaseLinkedInApiClient.getProfileById(java.lang.String id)
          Gets the profile by id.
 Person BaseLinkedInApiClient.getProfileById(java.lang.String id, ProfileType profileType)
          
 Person BaseLinkedInApiClient.getProfileById(java.lang.String id, ProfileType profileType, java.util.Set<ProfileField> profileFields)
          
 Person BaseLinkedInApiClient.getProfileById(java.lang.String id, java.util.Set<ProfileField> profileFields)
          Gets the profile by id.
 Person BaseLinkedInApiClient.getProfileByUrl(java.lang.String url, ProfileType profileType)
          Gets the profile by url.
 Person BaseLinkedInApiClient.getProfileByUrl(java.lang.String url, ProfileType profileType, java.util.Set<ProfileField> profileFields)
          Gets the profile by url.
 Person BaseLinkedInApiClient.getProfileForCurrentUser()
          Gets the profile for current user.
 Person BaseLinkedInApiClient.getProfileForCurrentUser(java.util.Set<ProfileField> profileFields)
          Gets the profile for current user.
 

Methods in com.google.code.linkedinapi.client.impl that return types with arguments of type Person
 java.util.concurrent.Future<Person> AsyncLinkedInApiClientAdapter.getProfileByApiRequest(ApiStandardProfileRequest apiRequest)
          Gets the profile by API request.
 java.util.concurrent.Future<Person> AsyncLinkedInApiClientAdapter.getProfileById(java.lang.String id)
          Gets the profile by id.
 java.util.concurrent.Future<Person> AsyncLinkedInApiClientAdapter.getProfileById(java.lang.String id, java.util.Set<ProfileField> profileFields)
          Gets the profile by id.
 java.util.concurrent.Future<Person> AsyncLinkedInApiClientAdapter.getProfileByUrl(java.lang.String url, ProfileType profileType)
          Gets the profile by url.
 java.util.concurrent.Future<Person> AsyncLinkedInApiClientAdapter.getProfileByUrl(java.lang.String url, ProfileType profileType, java.util.Set<ProfileField> profileFields)
          Gets the profile by url.
 java.util.concurrent.Future<Person> AsyncLinkedInApiClientAdapter.getProfileForCurrentUser()
          Gets the profile for current user.
 java.util.concurrent.Future<Person> AsyncLinkedInApiClientAdapter.getProfileForCurrentUser(java.util.Set<ProfileField> profileFields)
          Gets the profile for current user.
 

Methods in com.google.code.linkedinapi.client.impl with parameters of type Person
 void BaseLinkedInApiClient.sendInviteToPerson(Person recepient, java.lang.String subject, java.lang.String message)
          Send invite.
 java.util.concurrent.Future<?> AsyncLinkedInApiClientAdapter.sendInviteToPerson(Person recepient, java.lang.String subject, java.lang.String message)
          Send invite.
 void AsyncHandlerLinkedInApiClientAdapter.sendInviteToPerson(Person recepient, java.lang.String subject, java.lang.String message, AsyncResponseHandler<?> handler)
          Send invite.
 

Method parameters in com.google.code.linkedinapi.client.impl with type arguments of type Person
 void AsyncHandlerLinkedInApiClientAdapter.getProfileByApiRequest(ApiStandardProfileRequest apiRequest, AsyncResponseHandler<Person> handler)
          Gets the profile by API request.
 void AsyncHandlerLinkedInApiClientAdapter.getProfileById(java.lang.String id, AsyncResponseHandler<Person> handler)
          Gets the profile by id.
 void AsyncHandlerLinkedInApiClientAdapter.getProfileById(java.lang.String id, java.util.Set<ProfileField> profileFields, AsyncResponseHandler<Person> handler)
          Gets the profile by id.
 void AsyncHandlerLinkedInApiClientAdapter.getProfileByUrl(java.lang.String url, ProfileType profileType, AsyncResponseHandler<Person> handler)
          Gets the profile by url.
 void AsyncHandlerLinkedInApiClientAdapter.getProfileByUrl(java.lang.String url, ProfileType profileType, java.util.Set<ProfileField> profileFields, AsyncResponseHandler<Person> handler)
          Gets the profile by url.
 void AsyncHandlerLinkedInApiClientAdapter.getProfileForCurrentUser(AsyncResponseHandler<Person> handler)
          Gets the profile for current user.
 void AsyncHandlerLinkedInApiClientAdapter.getProfileForCurrentUser(java.util.Set<ProfileField> profileFields, AsyncResponseHandler<Person> handler)
          Gets the profile for current user.
 

Uses of Person in com.google.code.linkedinapi.schema
 

Methods in com.google.code.linkedinapi.schema that return Person
 Person ObjectFactory.createPerson()
          Create an instance of Person
 Person SchemaElementFactory.createPerson()
          Create an instance of Person
 Person Like.getPerson()
          Gets the value of the person property.
 Person UpdateContent.getPerson()
          Gets the value of the person property.
 Person UpdateComment.getPerson()
          Gets the value of the person property.
 Person Recipient.getPerson()
          Gets the value of the person property.
 

Methods in com.google.code.linkedinapi.schema that return types with arguments of type Person
 java.util.List<Person> Connections.getPersonList()
          Gets the value of the personList property.
 java.util.List<Person> People.getPersonList()
          Gets the value of the personList property.
 

Methods in com.google.code.linkedinapi.schema with parameters of type Person
 void Like.setPerson(Person value)
          Sets the value of the person property.
 void UpdateContent.setPerson(Person value)
          Sets the value of the person property.
 void UpdateComment.setPerson(Person value)
          Sets the value of the person property.
 void Recipient.setPerson(Person value)
          Sets the value of the person property.
 

Uses of Person in com.google.code.linkedinapi.schema.impl
 

Classes in com.google.code.linkedinapi.schema.impl that implement Person
 class PersonImpl
           
 

Fields in com.google.code.linkedinapi.schema.impl with type parameters of type Person
protected  java.util.List<Person> PeopleImpl.personList
           
protected  java.util.List<Person> ConnectionsImpl.personList
           
 

Methods in com.google.code.linkedinapi.schema.impl that return Person
 Person UpdateContentImpl.getPerson()
           
 Person UpdateCommentImpl.getPerson()
           
 Person RecipientImpl.getPerson()
           
 Person LikeImpl.getPerson()
           
 

Methods in com.google.code.linkedinapi.schema.impl that return types with arguments of type Person
 java.util.List<Person> PeopleImpl.getPersonList()
           
 java.util.List<Person> ConnectionsImpl.getPersonList()
           
 

Methods in com.google.code.linkedinapi.schema.impl with parameters of type Person
 void UpdateContentImpl.setPerson(Person value)
           
 void UpdateCommentImpl.setPerson(Person value)
           
 void RecipientImpl.setPerson(Person value)
           
 void LikeImpl.setPerson(Person value)
           
 

Uses of Person in com.google.code.linkedinapi.schema.xpp
 

Fields in com.google.code.linkedinapi.schema.xpp with type parameters of type Person
protected  java.util.List<Person> PeopleImpl.personList
           
protected  java.util.List<Person> ConnectionsImpl.personList
           
 

Methods in com.google.code.linkedinapi.schema.xpp that return Person
 Person XppElementFactory.createPerson()
           
 Person UpdateContentImpl.getPerson()
           
 Person UpdateCommentImpl.getPerson()
           
 Person RecipientImpl.getPerson()
           
 Person LikeImpl.getPerson()
           
 

Methods in com.google.code.linkedinapi.schema.xpp that return types with arguments of type Person
 java.util.List<Person> PeopleImpl.getPersonList()
           
 java.util.List<Person> ConnectionsImpl.getPersonList()
           
 

Methods in com.google.code.linkedinapi.schema.xpp with parameters of type Person
 void UpdateContentImpl.setPerson(Person value)
           
 void UpdateCommentImpl.setPerson(Person value)
           
 void RecipientImpl.setPerson(Person value)
           
 void LikeImpl.setPerson(Person value)