/**
*
* @return
*/
public List<LinkedInProfile> getConnections() {
LinkedInConnections connections = getRestTemplate().getForObject(
"https://api.linkedin.com/v1/people/~/connections",
LinkedInConnections.class);
return connections.getConnections();
}