org.springframework.social.connect
Interface ConnectionValues


public interface ConnectionValues

A configuration interface used to set values on a Connection from a specific service provider API instance. setProviderUserId(String) maps to ConnectionKey.getProviderUserId() setDisplayName(String) maps to Connection.getDisplayName() setProfileUrl(String) maps to Connection.getProfileUrl() setImageUrl(String) maps to Connection.getImageUrl()

See Also:
ApiAdapter.setConnectionValues(Object, ConnectionValues)

Method Summary
 void setDisplayName(java.lang.String displayName)
          Sets value mapped to Connection.getDisplayName().
 void setImageUrl(java.lang.String imageUrl)
          Sets value mapped to Connection.getImageUrl()
 void setProfileUrl(java.lang.String profileUrl)
          Sets value mapped to Connection.getProfileUrl()
 void setProviderUserId(java.lang.String providerUserId)
          Sets value mapped to ConnectionKey.getProviderUserId().
 

Method Detail

setProviderUserId

void setProviderUserId(java.lang.String providerUserId)
Sets value mapped to ConnectionKey.getProviderUserId().


setDisplayName

void setDisplayName(java.lang.String displayName)
Sets value mapped to Connection.getDisplayName().


setProfileUrl

void setProfileUrl(java.lang.String profileUrl)
Sets value mapped to Connection.getProfileUrl()


setImageUrl

void setImageUrl(java.lang.String imageUrl)
Sets value mapped to Connection.getImageUrl()