public interface NetworkUpdateOperations
| Modifier and Type | Method and Description |
|---|---|
void |
commentOnNetworkUpdate(java.lang.String updateKey,
java.lang.String comment)
Comment on a network update.
|
void |
createNetworkUpdate(java.lang.String update)
Updates status of user
|
CurrentShare |
getCurrentShare()
Get the last share for the current user
|
java.util.List<Comment> |
getNetworkUpdateComments(java.lang.String updateKey)
Get list of comments on a Network Update.
|
java.util.List<LinkedInProfile> |
getNetworkUpdateLikes(java.lang.String updateKey)
Get list of likes on a Network Update.
|
java.util.List<LinkedInNetworkUpdate> |
getNetworkUpdates()
Retrieves network updates for connections
|
java.util.List<LinkedInNetworkUpdate> |
getNetworkUpdates(int recordStart,
int recordCount)
Retrieves network updates for connections
Can iterate through all records using start and count
|
java.util.List<LinkedInNetworkUpdate> |
getNetworkUpdates(NetworkUpdateParameters parameters)
Advanced retrieval of network updates for connections or self
{link NetworkUpdateParameters} for details of each field.
|
java.lang.String |
getNetworkUpdatesJson(NetworkUpdateParameters parameters)
Advanced retrieval of network updates for connections or self
in JSON format rather than object.
|
void |
likeNetworkUpdate(java.lang.String updateKey)
Like network update.
|
java.net.URI |
share(NewShare share)
Share something to network
|
void |
unlikeNetworkUpdate(java.lang.String updateKey)
Unlike network update.
|
java.util.List<LinkedInNetworkUpdate> getNetworkUpdates()
java.util.List<LinkedInNetworkUpdate> getNetworkUpdates(int recordStart, int recordCount)
recordStart - First record to start atrecordCount - Number of records to returnjava.util.List<LinkedInNetworkUpdate> getNetworkUpdates(NetworkUpdateParameters parameters)
parameters - LinkedInParametersjava.lang.String getNetworkUpdatesJson(NetworkUpdateParameters parameters)
getNetworkUpdates(NetworkUpdateParameters parameters)parameters - LinkedInParametersjava.util.List<Comment> getNetworkUpdateComments(java.lang.String updateKey)
updateKey - the update keyjava.util.List<LinkedInProfile> getNetworkUpdateLikes(java.lang.String updateKey)
updateKey - the update keyvoid createNetworkUpdate(java.lang.String update)
update - Text of updatevoid likeNetworkUpdate(java.lang.String updateKey)
updateKey - the update keyvoid unlikeNetworkUpdate(java.lang.String updateKey)
updateKey - the update keyvoid commentOnNetworkUpdate(java.lang.String updateKey,
java.lang.String comment)
updateKey - the update keycomment - a commentCurrentShare getCurrentShare()