|
AeroGear Android Library 1.1.0 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of Callback in org.jboss.aerogear.android.authentication |
|---|
| Methods in org.jboss.aerogear.android.authentication with parameters of type Callback | |
|---|---|
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)
|
void |
AuthenticationModule.logout(Callback<Void> callback)
Performs a logout of the current user. |
void |
AbstractAuthenticationModule.logout(Callback<Void> callback)
|
| Uses of Callback in org.jboss.aerogear.android.authentication.impl |
|---|
| Methods in org.jboss.aerogear.android.authentication.impl with parameters of type Callback | |
|---|---|
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)
|
void |
HttpDigestAuthenticationModule.logout(Callback<Void> callback)
|
void |
HttpBasicAuthenticationModule.logout(Callback<Void> callback)
This method clears the username and password from the module, sets isLoggedIn to false, and removes all cookies associated with HttpBasicAuthenticationModule.baseURL
This method always calls onSuccess(java.lang.Object) |
void |
AGSecurityAuthenticationModule.logout(Callback<Void> callback)
|
| Uses of Callback in org.jboss.aerogear.android.authentication.impl.loader |
|---|
| Fields in org.jboss.aerogear.android.authentication.impl.loader declared as Callback | |
|---|---|
protected Callback |
AbstractAuthenticationLoader.callback
|
| Methods in org.jboss.aerogear.android.authentication.impl.loader that return Callback | |
|---|---|
Callback |
AbstractAuthenticationLoader.getCallback()
|
| Methods in org.jboss.aerogear.android.authentication.impl.loader with parameters of type Callback | |
|---|---|
void |
AuthenticationModuleAdapter.enroll(Map<String,String> userData,
Callback<HeaderAndBody> callback)
|
void |
AuthenticationModuleAdapter.login(String username,
String password,
Callback<HeaderAndBody> callback)
|
void |
AuthenticationModuleAdapter.logout(Callback<Void> callback)
|
| Constructors in org.jboss.aerogear.android.authentication.impl.loader with parameters of type Callback | |
|---|---|
AbstractAuthenticationLoader(android.content.Context context,
AuthenticationModule module,
Callback callback)
|
|
EnrollLoader(android.content.Context context,
Callback callback,
AuthenticationModule module,
Map<String,String> params)
|
|
LogoutLoader(android.content.Context context,
Callback callback,
AuthenticationModule module)
|
|
| Uses of Callback in org.jboss.aerogear.android.authentication.impl.loader.support |
|---|
| Fields in org.jboss.aerogear.android.authentication.impl.loader.support declared as Callback | |
|---|---|
protected Callback |
AbstractSupportAuthenticationLoader.callback
|
| Methods in org.jboss.aerogear.android.authentication.impl.loader.support that return Callback | |
|---|---|
Callback<HeaderAndBody> |
AbstractSupportAuthenticationLoader.getCallback()
|
| Methods in org.jboss.aerogear.android.authentication.impl.loader.support with parameters of type Callback | |
|---|---|
void |
SupportAuthenticationModuleAdapter.enroll(Map<String,String> userData,
Callback<HeaderAndBody> callback)
|
void |
SupportAuthenticationModuleAdapter.login(String username,
String password,
Callback<HeaderAndBody> callback)
|
void |
SupportAuthenticationModuleAdapter.logout(Callback<Void> callback)
|
| Constructors in org.jboss.aerogear.android.authentication.impl.loader.support with parameters of type Callback | |
|---|---|
AbstractSupportAuthenticationLoader(android.content.Context context,
AuthenticationModule module,
Callback callback)
|
|
SupportEnrollLoader(android.content.Context context,
Callback callback,
AuthenticationModule module,
Map<String,String> params)
|
|
SupportLoginLoader(android.content.Context context,
Callback callback,
AuthenticationModule module,
String username,
String password)
|
|
SupportLogoutLoader(android.content.Context context,
Callback callback,
AuthenticationModule module)
|
|
| Uses of Callback in org.jboss.aerogear.android.impl.datamanager |
|---|
| Methods in org.jboss.aerogear.android.impl.datamanager with parameters of type Callback | |
|---|---|
void |
SQLStore.open(Callback onReady)
|
| Uses of Callback in org.jboss.aerogear.android.impl.pipeline |
|---|
| Methods in org.jboss.aerogear.android.impl.pipeline with parameters of type Callback | |
|---|---|
void |
SupportLoaderAdapter.read(Callback<List<T>> callback)
|
void |
RestAdapter.read(Callback<List<T>> callback)
Sends a signal to the Pipe to read its data and return it via the callback. |
void |
LoaderAdapter.read(Callback<List<T>> callback)
|
void |
SupportLoaderAdapter.read(ReadFilter filter,
Callback<List<T>> callback)
|
void |
RestAdapter.read(ReadFilter filter,
Callback<List<T>> callback)
|
void |
LoaderAdapter.read(ReadFilter filter,
Callback<List<T>> callback)
|
void |
SupportLoaderAdapter.readWithFilter(ReadFilter filter,
Callback<List<T>> callback)
|
void |
RestAdapter.readWithFilter(ReadFilter filter,
Callback<List<T>> callback)
|
void |
LoaderAdapter.readWithFilter(ReadFilter filter,
Callback<List<T>> callback)
|
void |
SupportLoaderAdapter.remove(String toRemoveId,
Callback<Void> callback)
|
void |
RestAdapter.remove(String id,
Callback<Void> callback)
Removes an object from the underlying server connection. |
void |
LoaderAdapter.remove(String toRemoveId,
Callback<Void> callback)
|
void |
SupportLoaderAdapter.save(T item,
Callback<T> callback)
|
void |
RestAdapter.save(T data,
Callback<T> callback)
|
void |
LoaderAdapter.save(T item,
Callback<T> callback)
|
| Uses of Callback in org.jboss.aerogear.android.impl.pipeline.loader |
|---|
| Methods in org.jboss.aerogear.android.impl.pipeline.loader that return Callback | |
|---|---|
Callback<T> |
AbstractPipeLoader.getCallback()
|
| Constructors in org.jboss.aerogear.android.impl.pipeline.loader with parameters of type Callback | |
|---|---|
AbstractPipeLoader(android.content.Context context,
Callback<T> callback)
|
|
ReadLoader(android.content.Context context,
Callback<List<T>> callback,
PipeHandler<T> runner,
ReadFilter filter,
Pipe<T> pipe)
|
|
RemoveLoader(android.content.Context context,
Callback<T> callback,
PipeHandler<T> runner,
String id)
|
|
SaveLoader(android.content.Context context,
Callback<T> callback,
PipeHandler<T> runner,
T data)
|
|
| Uses of Callback in org.jboss.aerogear.android.impl.pipeline.loader.support |
|---|
| Methods in org.jboss.aerogear.android.impl.pipeline.loader.support that return Callback | |
|---|---|
Callback<T> |
AbstractSupportPipeLoader.getCallback()
|
| Constructors in org.jboss.aerogear.android.impl.pipeline.loader.support with parameters of type Callback | |
|---|---|
AbstractSupportPipeLoader(android.content.Context context,
Callback<T> callback)
|
|
SupportReadLoader(android.content.Context context,
Callback<List<T>> callback,
PipeHandler<T> runner,
ReadFilter filter,
Pipe<T> pipe)
|
|
SupportRemoveLoader(android.content.Context context,
Callback<T> callback,
PipeHandler<T> runner,
String id)
|
|
SupportSaveLoader(android.content.Context context,
Callback<T> callback,
PipeHandler<T> runner,
T data)
|
|
| Uses of Callback in org.jboss.aerogear.android.impl.pipeline.paging |
|---|
| Methods in org.jboss.aerogear.android.impl.pipeline.paging with parameters of type Callback | |
|---|---|
void |
WrappingPagedList.next(Callback<List<T>> callback)
|
void |
WrappingPagedList.previous(Callback<List<T>> callback)
|
| Uses of Callback in org.jboss.aerogear.android.pipeline |
|---|
| Classes in org.jboss.aerogear.android.pipeline that implement Callback | |
|---|---|
class |
AbstractActivityCallback<T>
LoaderPipe and AuthenticationModule instances which consume
callbacks of this type will supply it with a Activity instance before
onSuccess or onFailure are called. |
class |
AbstractCallback<T>
This class provides a hashcode method for a callback based on constructor parameters. |
class |
AbstractFragmentCallback<T>
LoaderPipe and AuthenticationModule instances which consume
callbacks of this type will supply it with a Activity instance before
onSuccess or onFailure are called. |
| Methods in org.jboss.aerogear.android.pipeline with parameters of type Callback | |
|---|---|
void |
Pipe.read(Callback<List<T>> callback)
Sends a signal to the Pipe to read its data and return it via the callback. |
void |
Pipe.read(ReadFilter filter,
Callback<List<T>> callback)
Reads all the data from the underlying server connection. |
void |
Pipe.readWithFilter(ReadFilter filter,
Callback<List<T>> callback)
Deprecated. in 1.1. Please use Pipe.read(org.jboss.aerogear.android.ReadFilter, org.jboss.aerogear.android.Callback) instead |
void |
Pipe.remove(String id,
Callback<Void> callback)
Removes an object from the underlying server connection. |
void |
Pipe.save(T item,
Callback<T> callback)
Saves or updates a given object on the server. |
| Uses of Callback in org.jboss.aerogear.android.pipeline.paging |
|---|
| Methods in org.jboss.aerogear.android.pipeline.paging with parameters of type Callback | |
|---|---|
void |
PagedList.next(Callback<List<T>> callback)
Retrieve the next result set. |
void |
PagedList.previous(Callback<List<T>> callback)
Retrieve the previous result set. |
| Uses of Callback in org.jboss.aerogear.android.pipeline.support |
|---|
| Classes in org.jboss.aerogear.android.pipeline.support that implement Callback | |
|---|---|
class |
AbstractFragmentActivityCallback<T>
LoaderPipe and AuthenticationModule instances which consume
callbacks of this type will supply it with a Activity instance before
onSuccess or onFailure are called. |
class |
AbstractSupportFragmentCallback<T>
LoaderPipe and AuthenticationModule instances which consume
callbacks of this type will supply it with a Activity instance before
onSuccess or onFailure are called. |
|
AeroGear Android Library 1.1.0 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||