Back to project page uppidy-android-sdk.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCT...
If you think the Android project uppidy-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.uppidy.android.sdk.connect; /*from w w w.j a v a 2 s. c o m*/ import org.springframework.social.connect.support.OAuth2ConnectionFactory; import com.uppidy.android.sdk.api.Uppidy; /** * Uppidy ConnectionFactory implementation. * * @author arudnev@uppidy.com */ public class UppidyConnectionFactory extends OAuth2ConnectionFactory<Uppidy> { public UppidyConnectionFactory(String clientId, String baseUrl) { super("uppidy", new UppidyServiceProvider(clientId, baseUrl), new UppidyAdapter()); } }