Back to project page drupalForAndroidSDK.
The source code is released under:
GNU General Public License
If you think the Android project drupalForAndroidSDK 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.druCloud.drupalforandroidsdk; //from w ww . j a v a 2 s . c o m import org.apache.http.client.methods.HttpRequestBase; /** * Created by keithyau on 12/12/13. */ public interface DrupalAuth { public void initAuth(String baseURI, String endpoint); public <T extends HttpRequestBase> T initRequest (T request); }