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.impl; // w ww .j a v a 2 s .co m import org.springframework.social.MissingAuthorizationException; class AbstractUppidyOperations { private final boolean isAuthorized; public AbstractUppidyOperations(boolean isAuthorized) { this.isAuthorized = isAuthorized; } protected void requireAuthorization() { if (!isAuthorized) { throw new MissingAuthorizationException(); } } }