Uses of Class
com.google.code.linkedinapi.client.AsyncResponseHandler

Packages that use AsyncResponseHandler
com.google.code.linkedinapi.client   
com.google.code.linkedinapi.client.impl   
 

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

Methods in com.google.code.linkedinapi.client with parameters of type AsyncResponseHandler
 void AsyncHandlerLinkedInApiClient.deleteCurrentStatus(AsyncResponseHandler<?> handler)
          Delete current status.
 void AsyncHandlerLinkedInApiClient.getConnectionsById(java.lang.String id, AsyncResponseHandler<Connections> handler)
          Gets the connections by id.
 void AsyncHandlerLinkedInApiClient.getConnectionsById(java.lang.String id, int start, int count, AsyncResponseHandler<Connections> handler)
          Gets the connections by id.
 void AsyncHandlerLinkedInApiClient.getConnectionsById(java.lang.String id, java.util.Set<ProfileField> profileFields, AsyncResponseHandler<Connections> handler)
          Gets the connections by id.
 void AsyncHandlerLinkedInApiClient.getConnectionsById(java.lang.String id, java.util.Set<ProfileField> profileFields, int start, int count, AsyncResponseHandler<Connections> handler)
          Gets the connections by id.
 void AsyncHandlerLinkedInApiClient.getConnectionsByUrl(java.lang.String url, AsyncResponseHandler<Connections> handler)
          Gets the connections by url.
 void AsyncHandlerLinkedInApiClient.getConnectionsByUrl(java.lang.String url, int start, int count, AsyncResponseHandler<Connections> handler)
          Gets the connections by url.
 void AsyncHandlerLinkedInApiClient.getConnectionsByUrl(java.lang.String url, java.util.Set<ProfileField> profileFields, AsyncResponseHandler<Connections> handler)
          Gets the connections by url.
 void AsyncHandlerLinkedInApiClient.getConnectionsByUrl(java.lang.String url, java.util.Set<ProfileField> profileFields, int start, int count, AsyncResponseHandler<Connections> handler)
          Gets the connections by url.
 void AsyncHandlerLinkedInApiClient.getConnectionsForCurrentUser(AsyncResponseHandler<Connections> handler)
          Gets the connections for current user.
 void AsyncHandlerLinkedInApiClient.getConnectionsForCurrentUser(int start, int count, AsyncResponseHandler<Connections> handler)
          Gets the connections for current user.
 void AsyncHandlerLinkedInApiClient.getConnectionsForCurrentUser(java.util.Set<ProfileField> profileFields, AsyncResponseHandler<Connections> handler)
          Gets the connections for current user.
 void AsyncHandlerLinkedInApiClient.getConnectionsForCurrentUser(java.util.Set<ProfileField> profileFields, int start, int count, AsyncResponseHandler<Connections> handler)
          Gets the connections for current user.
 void AsyncHandlerLinkedInApiClient.getNetworkUpdateComments(java.lang.String networkUpdateId, AsyncResponseHandler<UpdateComments> handler)
          Gets the network update comments.
 void AsyncHandlerLinkedInApiClient.getNetworkUpdates(AsyncResponseHandler<Network> handler)
          Gets the network updates.
 void AsyncHandlerLinkedInApiClient.getNetworkUpdates(java.util.Date startDate, java.util.Date endDate, AsyncResponseHandler<Network> handler)
          Gets the network updates.
 void AsyncHandlerLinkedInApiClient.getNetworkUpdates(int start, int count, AsyncResponseHandler<Network> handler)
          Gets the network updates.
 void AsyncHandlerLinkedInApiClient.getNetworkUpdates(java.util.Set<NetworkUpdateType> updateTypes, AsyncResponseHandler<Network> handler)
          Gets the network updates.
 void AsyncHandlerLinkedInApiClient.getNetworkUpdates(java.util.Set<NetworkUpdateType> updateTypes, java.util.Date startDate, java.util.Date endDate, AsyncResponseHandler<Network> handler)
          Gets the network updates.
 void AsyncHandlerLinkedInApiClient.getNetworkUpdates(java.util.Set<NetworkUpdateType> updateTypes, int start, int count, AsyncResponseHandler<Network> handler)
          Gets the network updates.
 void AsyncHandlerLinkedInApiClient.getNetworkUpdates(java.util.Set<NetworkUpdateType> updateTypes, int start, int count, java.util.Date startDate, java.util.Date endDate, AsyncResponseHandler<Network> handler)
          Gets the network updates.
 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.
 void AsyncHandlerLinkedInApiClient.postComment(java.lang.String networkUpdateId, java.lang.String commentText, AsyncResponseHandler<?> handler)
          Post comment.
 void AsyncHandlerLinkedInApiClient.postNetworkUpdate(java.lang.String updateText, AsyncResponseHandler<?> handler)
          Post network update.
 void AsyncHandlerLinkedInApiClient.searchPeople(AsyncResponseHandler<People> handler)
          Search people.
 void AsyncHandlerLinkedInApiClient.searchPeople(java.util.Map<SearchParameter,java.lang.String> searchParameters, AsyncResponseHandler<People> handler)
          Search people.
 void AsyncHandlerLinkedInApiClient.searchPeople(java.util.Map<SearchParameter,java.lang.String> searchParameters, int start, int count, AsyncResponseHandler<People> handler)
          Search people.
 void AsyncHandlerLinkedInApiClient.searchPeople(java.util.Map<SearchParameter,java.lang.String> searchParameters, int start, int count, SearchSortOrder sortOrder, AsyncResponseHandler<People> handler)
          Search people.
 void AsyncHandlerLinkedInApiClient.searchPeople(java.util.Map<SearchParameter,java.lang.String> searchParameters, SearchSortOrder sortOrder, AsyncResponseHandler<People> handler)
          Search people.
 void AsyncHandlerLinkedInApiClient.sendInviteByEmail(java.lang.String email, java.lang.String firstName, java.lang.String lastName, java.lang.String subject, java.lang.String message, AsyncResponseHandler<?> handler)
          Send invite.
 void AsyncHandlerLinkedInApiClient.sendInviteById(java.lang.String recepientId, java.lang.String subject, java.lang.String message, java.lang.String authHeader, AsyncResponseHandler<?> handler)
          Send invite.
 void AsyncHandlerLinkedInApiClient.sendInviteToPerson(Person recepient, java.lang.String subject, java.lang.String message, AsyncResponseHandler<?> handler)
          Send invite.
 void AsyncHandlerLinkedInApiClient.sendMessage(java.util.List<java.lang.String> recepientIds, java.lang.String subject, java.lang.String message, AsyncResponseHandler<?> handler)
          Send message.
 void AsyncHandlerLinkedInApiClient.updateCurrentStatus(java.lang.String status, AsyncResponseHandler<?> handler)
          Update current status.
 

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

Subclasses of AsyncResponseHandler in com.google.code.linkedinapi.client.impl
private static class AsyncLinkedInApiClientAdapter.NullResponseHandler<T extends SchemaEntity>
           
 

Methods in com.google.code.linkedinapi.client.impl with parameters of type AsyncResponseHandler
 void AsyncHandlerLinkedInApiClientAdapter.deleteCurrentStatus(AsyncResponseHandler<?> handler)
          Delete current status.
 void AsyncHandlerLinkedInApiClientAdapter.getConnectionsById(java.lang.String id, AsyncResponseHandler<Connections> handler)
          Gets the connections by id.
 void AsyncHandlerLinkedInApiClientAdapter.getConnectionsById(java.lang.String id, int start, int count, AsyncResponseHandler<Connections> handler)
          Gets the connections by id.
 void AsyncHandlerLinkedInApiClientAdapter.getConnectionsById(java.lang.String id, java.util.Set<ProfileField> profileFields, AsyncResponseHandler<Connections> handler)
          Gets the connections by id.
 void AsyncHandlerLinkedInApiClientAdapter.getConnectionsById(java.lang.String id, java.util.Set<ProfileField> profileFields, int start, int count, AsyncResponseHandler<Connections> handler)
          Gets the connections by id.
 void AsyncHandlerLinkedInApiClientAdapter.getConnectionsByUrl(java.lang.String url, AsyncResponseHandler<Connections> handler)
          Gets the connections by url.
 void AsyncHandlerLinkedInApiClientAdapter.getConnectionsByUrl(java.lang.String url, int start, int count, AsyncResponseHandler<Connections> handler)
          Gets the connections by url.
 void AsyncHandlerLinkedInApiClientAdapter.getConnectionsByUrl(java.lang.String url, java.util.Set<ProfileField> profileFields, AsyncResponseHandler<Connections> handler)
          Gets the connections by url.
 void AsyncHandlerLinkedInApiClientAdapter.getConnectionsByUrl(java.lang.String url, java.util.Set<ProfileField> profileFields, int start, int count, AsyncResponseHandler<Connections> handler)
          Gets the connections by url.
 void AsyncHandlerLinkedInApiClientAdapter.getConnectionsForCurrentUser(AsyncResponseHandler<Connections> handler)
          Gets the connections for current user.
 void AsyncHandlerLinkedInApiClientAdapter.getConnectionsForCurrentUser(int start, int count, AsyncResponseHandler<Connections> handler)
          Gets the connections for current user.
 void AsyncHandlerLinkedInApiClientAdapter.getConnectionsForCurrentUser(java.util.Set<ProfileField> profileFields, AsyncResponseHandler<Connections> handler)
          Gets the connections for current user.
 void AsyncHandlerLinkedInApiClientAdapter.getConnectionsForCurrentUser(java.util.Set<ProfileField> profileFields, int start, int count, AsyncResponseHandler<Connections> handler)
          Gets the connections for current user.
 void AsyncHandlerLinkedInApiClientAdapter.getNetworkUpdateComments(java.lang.String networkUpdateId, AsyncResponseHandler<UpdateComments> handler)
          Gets the network update comments.
 void AsyncHandlerLinkedInApiClientAdapter.getNetworkUpdates(AsyncResponseHandler<Network> handler)
          Gets the network updates.
 void AsyncHandlerLinkedInApiClientAdapter.getNetworkUpdates(java.util.Date startDate, java.util.Date endDate, AsyncResponseHandler<Network> handler)
          Gets the network updates.
 void AsyncHandlerLinkedInApiClientAdapter.getNetworkUpdates(int start, int count, AsyncResponseHandler<Network> handler)
          Gets the network updates.
 void AsyncHandlerLinkedInApiClientAdapter.getNetworkUpdates(java.util.Set<NetworkUpdateType> updateTypes, AsyncResponseHandler<Network> handler)
          Gets the network updates.
 void AsyncHandlerLinkedInApiClientAdapter.getNetworkUpdates(java.util.Set<NetworkUpdateType> updateTypes, java.util.Date startDate, java.util.Date endDate, AsyncResponseHandler<Network> handler)
          Gets the network updates.
 void AsyncHandlerLinkedInApiClientAdapter.getNetworkUpdates(java.util.Set<NetworkUpdateType> updateTypes, int start, int count, AsyncResponseHandler<Network> handler)
          Gets the network updates.
 void AsyncHandlerLinkedInApiClientAdapter.getNetworkUpdates(java.util.Set<NetworkUpdateType> updateTypes, int start, int count, java.util.Date startDate, java.util.Date endDate, AsyncResponseHandler<Network> handler)
          Gets the network updates.
 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.
 void AsyncHandlerLinkedInApiClientAdapter.postComment(java.lang.String networkUpdateId, java.lang.String commentText, AsyncResponseHandler<?> handler)
          Post comment.
 void AsyncHandlerLinkedInApiClientAdapter.postNetworkUpdate(java.lang.String updateText, AsyncResponseHandler<?> handler)
          Post network update.
 void AsyncHandlerLinkedInApiClientAdapter.searchPeople(AsyncResponseHandler<People> handler)
          Search people.
 void AsyncHandlerLinkedInApiClientAdapter.searchPeople(java.util.Map<SearchParameter,java.lang.String> searchParameters, AsyncResponseHandler<People> handler)
          Search people.
 void AsyncHandlerLinkedInApiClientAdapter.searchPeople(java.util.Map<SearchParameter,java.lang.String> searchParameters, int start, int count, AsyncResponseHandler<People> handler)
          Search people.
 void AsyncHandlerLinkedInApiClientAdapter.searchPeople(java.util.Map<SearchParameter,java.lang.String> searchParameters, int start, int count, SearchSortOrder sortOrder, AsyncResponseHandler<People> handler)
          Search people.
 void AsyncHandlerLinkedInApiClientAdapter.searchPeople(java.util.Map<SearchParameter,java.lang.String> searchParameters, SearchSortOrder sortOrder, AsyncResponseHandler<People> handler)
          Search people.
 void AsyncHandlerLinkedInApiClientAdapter.sendInviteByEmail(java.lang.String email, java.lang.String firstName, java.lang.String lastName, java.lang.String subject, java.lang.String message, AsyncResponseHandler<?> handler)
          Send invite.
 void AsyncHandlerLinkedInApiClientAdapter.sendInviteById(java.lang.String recepientId, java.lang.String subject, java.lang.String message, java.lang.String authHeader, AsyncResponseHandler<?> handler)
          Send invite.
 void AsyncHandlerLinkedInApiClientAdapter.sendInviteToPerson(Person recepient, java.lang.String subject, java.lang.String message, AsyncResponseHandler<?> handler)
          Send invite.
 void AsyncHandlerLinkedInApiClientAdapter.sendMessage(java.util.List<java.lang.String> recepientIds, java.lang.String subject, java.lang.String message, AsyncResponseHandler<?> handler)
          Send message.
 void AsyncHandlerLinkedInApiClientAdapter.updateCurrentStatus(java.lang.String status, AsyncResponseHandler<?> handler)
          Update current status.