AeroGear Android Library 1.1.0

Uses of Class
org.jboss.aerogear.android.http.HeaderAndBody

Packages that use HeaderAndBody
org.jboss.aerogear.android.authentication   
org.jboss.aerogear.android.authentication.impl   
org.jboss.aerogear.android.authentication.impl.loader   
org.jboss.aerogear.android.authentication.impl.loader.support   
org.jboss.aerogear.android.http   
org.jboss.aerogear.android.impl.http   
org.jboss.aerogear.android.impl.pipeline.paging   
org.jboss.aerogear.android.pipeline.paging   
 

Uses of HeaderAndBody in org.jboss.aerogear.android.authentication
 

Method parameters in org.jboss.aerogear.android.authentication with type arguments of type HeaderAndBody
 void AuthenticationModule.enroll(Map<String,String> userData, Callback<HeaderAndBody> callback)
          Will try to register a user with a service using userData.
 void AbstractAuthenticationModule.enroll(Map<String,String> userData, Callback<HeaderAndBody> callback)
           
 void AuthenticationModule.login(String username, String password, Callback<HeaderAndBody> callback)
          Will try to log in a user using username and password.
 void AbstractAuthenticationModule.login(String username, String password, Callback<HeaderAndBody> callback)
           
 

Uses of HeaderAndBody in org.jboss.aerogear.android.authentication.impl
 

Methods in org.jboss.aerogear.android.authentication.impl that return HeaderAndBody
 HeaderAndBody DigestAuthenticationModuleRunner.onEnroll(Map<String,String> userData)
           
 HeaderAndBody DigestAuthenticationModuleRunner.onLogin(String username, String password)
           
 

Method parameters in org.jboss.aerogear.android.authentication.impl with type arguments of type HeaderAndBody
 void HttpDigestAuthenticationModule.enroll(Map<String,String> userData, Callback<HeaderAndBody> callback)
           
 void HttpBasicAuthenticationModule.enroll(Map<String,String> userData, Callback<HeaderAndBody> callback)
          Enrolling is not supported using http basic.
 void AGSecurityAuthenticationModule.enroll(Map<String,String> userData, Callback<HeaderAndBody> callback)
           
 void AGSecurityAuthenticationModule.login(Map<String,String> loginData, Callback<HeaderAndBody> callback)
           
 void HttpDigestAuthenticationModule.login(String username, String password, Callback<HeaderAndBody> callback)
           
 void HttpBasicAuthenticationModule.login(String username, String password, Callback<HeaderAndBody> callback)
          This method stores username and password.
 void AGSecurityAuthenticationModule.login(String username, String password, Callback<HeaderAndBody> callback)
           
 

Uses of HeaderAndBody in org.jboss.aerogear.android.authentication.impl.loader
 

Methods in org.jboss.aerogear.android.authentication.impl.loader that return HeaderAndBody
 HeaderAndBody LogoutLoader.loadInBackground()
           
 HeaderAndBody LoginLoader.loadInBackground()
           
 HeaderAndBody EnrollLoader.loadInBackground()
           
 

Methods in org.jboss.aerogear.android.authentication.impl.loader that return types with arguments of type HeaderAndBody
 android.content.Loader<HeaderAndBody> AuthenticationModuleAdapter.onCreateLoader(int id, android.os.Bundle bundle)
           
 

Methods in org.jboss.aerogear.android.authentication.impl.loader with parameters of type HeaderAndBody
 void AuthenticationModuleAdapter.onLoadFinished(android.content.Loader<HeaderAndBody> loader, HeaderAndBody data)
          This method will call the Callback for a enroll, login, or logout method on the main thread of the application.
 

Method parameters in org.jboss.aerogear.android.authentication.impl.loader with type arguments of type HeaderAndBody
 void AuthenticationModuleAdapter.enroll(Map<String,String> userData, Callback<HeaderAndBody> callback)
           
 void AuthenticationModuleAdapter.login(String username, String password, Callback<HeaderAndBody> callback)
           
 void AuthenticationModuleAdapter.onLoaderReset(android.content.Loader<HeaderAndBody> loader)
           
 void AuthenticationModuleAdapter.onLoadFinished(android.content.Loader<HeaderAndBody> loader, HeaderAndBody data)
          This method will call the Callback for a enroll, login, or logout method on the main thread of the application.
 

Uses of HeaderAndBody in org.jboss.aerogear.android.authentication.impl.loader.support
 

Methods in org.jboss.aerogear.android.authentication.impl.loader.support that return HeaderAndBody
 HeaderAndBody SupportLogoutLoader.loadInBackground()
           
 HeaderAndBody SupportLoginLoader.loadInBackground()
           
 HeaderAndBody SupportEnrollLoader.loadInBackground()
           
 

Methods in org.jboss.aerogear.android.authentication.impl.loader.support that return types with arguments of type HeaderAndBody
 Callback<HeaderAndBody> AbstractSupportAuthenticationLoader.getCallback()
           
 android.support.v4.content.Loader<HeaderAndBody> SupportAuthenticationModuleAdapter.onCreateLoader(int id, android.os.Bundle bundle)
           
 

Methods in org.jboss.aerogear.android.authentication.impl.loader.support with parameters of type HeaderAndBody
 void SupportAuthenticationModuleAdapter.onLoadFinished(android.support.v4.content.Loader<HeaderAndBody> loader, HeaderAndBody data)
          This method will call the Callback for a enroll, login, or logout method on the main thread of the application.
 

Method parameters in org.jboss.aerogear.android.authentication.impl.loader.support with type arguments of type HeaderAndBody
 void SupportAuthenticationModuleAdapter.enroll(Map<String,String> userData, Callback<HeaderAndBody> callback)
           
 void SupportAuthenticationModuleAdapter.login(String username, String password, Callback<HeaderAndBody> callback)
           
 void SupportAuthenticationModuleAdapter.onLoaderReset(android.support.v4.content.Loader<HeaderAndBody> loader)
           
 void SupportAuthenticationModuleAdapter.onLoadFinished(android.support.v4.content.Loader<HeaderAndBody> loader, HeaderAndBody data)
          This method will call the Callback for a enroll, login, or logout method on the main thread of the application.
 

Uses of HeaderAndBody in org.jboss.aerogear.android.http
 

Methods in org.jboss.aerogear.android.http that return HeaderAndBody
 HeaderAndBody HttpProvider.delete(String id)
          Issues an HTTP request, consumes the content, and cleans up after itself.
 HeaderAndBody HttpProvider.get()
          Issues an HTTP request, consumes the content, and cleans up after itself.
 HeaderAndBody HttpProvider.post(byte[] data)
          Issues an HTTP request, consumes the content, and cleans up after itself.
 HeaderAndBody HttpProvider.post(String data)
          Issues an HTTP request, consumes the content, and cleans up after itself.
 HeaderAndBody HttpProvider.put(String id, byte[] data)
          Issues an HTTP request, consumes the content, and cleans up after itself.
 HeaderAndBody HttpProvider.put(String id, String data)
          Issues an HTTP request, consumes the content, and cleans up after itself.
 

Uses of HeaderAndBody in org.jboss.aerogear.android.impl.http
 

Methods in org.jboss.aerogear.android.impl.http that return HeaderAndBody
 HeaderAndBody HttpRestProvider.delete(String id)
          Issues an HTTP request, consumes the content, and cleans up after itself.
 HeaderAndBody HttpRestProvider.get()
          Issues an HTTP request, consumes the content, and cleans up after itself.
 HeaderAndBody HttpRestProvider.post(byte[] data)
          Issues an HTTP request, consumes the content, and cleans up after itself.
 HeaderAndBody HttpRestProvider.post(String data)
          Issues an HTTP request, consumes the content, and cleans up after itself.
 HeaderAndBody HttpRestProvider.put(String id, byte[] data)
          Issues an HTTP request, consumes the content, and cleans up after itself.
 HeaderAndBody HttpRestProvider.put(String id, String data)
          Issues an HTTP request, consumes the content, and cleans up after itself.
 

Uses of HeaderAndBody in org.jboss.aerogear.android.impl.pipeline.paging
 

Methods in org.jboss.aerogear.android.impl.pipeline.paging with parameters of type HeaderAndBody
 ReadFilter URIPageHeaderParser.getNextFilter(HeaderAndBody result, PageConfig config)
           
 ReadFilter URIBodyPageParser.getNextFilter(HeaderAndBody result, PageConfig config)
           
 ReadFilter URIPageHeaderParser.getPreviousFilter(HeaderAndBody result, PageConfig config)
           
 ReadFilter URIBodyPageParser.getPreviousFilter(HeaderAndBody result, PageConfig config)
           
 

Uses of HeaderAndBody in org.jboss.aerogear.android.pipeline.paging
 

Methods in org.jboss.aerogear.android.pipeline.paging with parameters of type HeaderAndBody
 ReadFilter PageParameterExtractor.getNextFilter(HeaderAndBody response, T config)
          Extracts a usable ReadFilter from the response of a server for the "next" result set.
 ReadFilter PageParameterExtractor.getPreviousFilter(HeaderAndBody response, T config)
          Extracts a usable ReadFilter from the response of a server for the "previous" result set.
 


AeroGear Android Library 1.1.0

Copyright © 2013 JBoss by Red Hat. All Rights Reserved.