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.api; /* w w w . j a va 2s. com*/ import org.springframework.social.ApiBinding; import org.springframework.web.client.RestOperations; public interface Uppidy extends ApiBinding { /** * API for performing operations on Uppidy user profiles. */ UserOperations userOperations(); /** * API for performing operations on Uppidy feeds. */ FeedOperations feedOperations(); /** * API for performing backup operations. */ BackupOperations backupOperations(); /** * Returns the underlying {@link RestOperations} object allowing for * consumption of Uppidy endpoints that may not be otherwise covered by the * API binding. * * The RestOperations object returned is configured to include an OAuth 2 * "Authorization" header on all requests. */ RestOperations restOperations(); /** * Base REST API URL */ String getBaseUrl(); }