private SocialUserConnection createExistingSocialUserConnection(
     String userId,
     String providerId,
     String providerUserId,
     Long rank,
     String displayName,
     String profileURL,
     String imageURL,
     String accessToken,
     String secret,
     String refreshToken,
     Long expireTime) {
   SocialUserConnection socialUserConnectionToSabe =
       new SocialUserConnection(
           userId,
           providerId,
           providerUserId,
           rank,
           displayName,
           profileURL,
           imageURL,
           accessToken,
           secret,
           refreshToken,
           expireTime);
   return socialUserConnectionRepository.save(socialUserConnectionToSabe);
 }