| Modifier and Type | Method and Description |
|---|---|
void |
AbstractAuthenticationModule.enroll(Map<String,String> userData,
Callback<HeaderAndBody> callback) |
void |
AuthenticationModule.enroll(Map<String,String> userData,
Callback<HeaderAndBody> callback)
Will try to register a user with a service using userData.
|
void |
AuthenticationModule.login(Map<String,String> loginData,
Callback<HeaderAndBody> callback)
Will try to log in a user
It will call the callbacks onSuccess with a parameter of a Map of the
values returned by the enroll service or onFailure if there is an error
|
void |
AbstractAuthenticationModule.login(String username,
String password,
Callback<HeaderAndBody> callback) |
void |
AuthenticationModule.login(String username,
String password,
Callback<HeaderAndBody> callback)
Will try to log in a user using username and password.
|
| Modifier and Type | Method and Description |
|---|---|
HeaderAndBody |
DigestAuthenticationModuleRunner.onEnroll(Map<String,String> userData) |
HeaderAndBody |
DigestAuthenticationModuleRunner.onLogin(String username,
String password) |
| Modifier and Type | Method and Description |
|---|---|
void |
AGSecurityAuthenticationModule.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 |
HttpDigestAuthenticationModule.enroll(Map<String,String> userData,
Callback<HeaderAndBody> callback) |
void |
AGSecurityAuthenticationModule.login(Map<String,String> loginData,
Callback<HeaderAndBody> callback) |
void |
HttpBasicAuthenticationModule.login(Map<String,String> loginData,
Callback<HeaderAndBody> callback)
This will log in the user using the keys "loginName" and "password".
|
void |
HttpDigestAuthenticationModule.login(Map<String,String> loginData,
Callback<HeaderAndBody> callback)
Will try to log in a user
It will call the callbacks onSuccess with a parameter of a Map of the
values returned by the enroll service or onFailure if there is an error
|
void |
AGSecurityAuthenticationModule.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 |
HttpDigestAuthenticationModule.login(String username,
String password,
Callback<HeaderAndBody> callback) |
| Modifier and Type | Method and Description |
|---|---|
HeaderAndBody |
EnrollLoader.loadInBackground() |
HeaderAndBody |
LoginLoader.loadInBackground() |
HeaderAndBody |
LogoutLoader.loadInBackground() |
| Modifier and Type | Method and Description |
|---|---|
android.content.Loader<HeaderAndBody> |
AuthenticationModuleAdapter.onCreateLoader(int id,
android.os.Bundle bundle) |
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AuthenticationModuleAdapter.enroll(Map<String,String> userData,
Callback<HeaderAndBody> callback) |
void |
AuthenticationModuleAdapter.login(Map<String,String> loginData,
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.
|
| Modifier and Type | Method and Description |
|---|---|
HeaderAndBody |
SupportEnrollLoader.loadInBackground() |
HeaderAndBody |
SupportLoginLoader.loadInBackground() |
HeaderAndBody |
SupportLogoutLoader.loadInBackground() |
| Modifier and Type | Method and Description |
|---|---|
Callback<HeaderAndBody> |
AbstractSupportAuthenticationLoader.getCallback() |
android.support.v4.content.Loader<HeaderAndBody> |
SupportAuthenticationModuleAdapter.onCreateLoader(int id,
android.os.Bundle bundle) |
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
void |
SupportAuthenticationModuleAdapter.enroll(Map<String,String> userData,
Callback<HeaderAndBody> callback) |
void |
SupportAuthenticationModuleAdapter.login(Map<String,String> loginData,
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.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
HeaderAndBody |
HttpRestProvider.delete(String id)
Issues an HTTP request, consumes the content, and cleans up
after itself.
|
HeaderAndBody |
HttpRestProviderForPush.delete(String id) |
HeaderAndBody |
HttpRestProvider.get()
Issues an HTTP request, consumes the content, and cleans up
after itself.
|
HeaderAndBody |
HttpRestProviderForPush.get() |
HeaderAndBody |
HttpRestProvider.post(byte[] data)
Issues an HTTP request, consumes the content, and cleans up
after itself.
|
HeaderAndBody |
HttpRestProviderForPush.post(byte[] data) |
HeaderAndBody |
HttpRestProvider.post(String data)
Issues an HTTP request, consumes the content, and cleans up
after itself.
|
HeaderAndBody |
HttpRestProviderForPush.post(String data) |
HeaderAndBody |
HttpRestProvider.put(String id,
byte[] data)
Issues an HTTP request, consumes the content, and cleans up
after itself.
|
HeaderAndBody |
HttpRestProviderForPush.put(String id,
byte[] data) |
HeaderAndBody |
HttpRestProvider.put(String id,
String data)
Issues an HTTP request, consumes the content, and cleans up
after itself.
|
HeaderAndBody |
HttpRestProviderForPush.put(String id,
String data) |
| Modifier and Type | Method and Description |
|---|---|
HeaderAndBody |
RestRunner.onRawRead(Pipe<T> requestingPipe) |
HeaderAndBody |
RestRunner.onRawReadWithFilter(ReadFilter filter,
Pipe<T> requestingPipe) |
HeaderAndBody |
RestRunner.onRawSave(String id,
byte[] item) |
| Modifier and Type | Method and Description |
|---|---|
android.content.Loader<HeaderAndBody> |
LoaderAdapter.onCreateLoader(int id,
android.os.Bundle bundle) |
android.support.v4.content.Loader<HeaderAndBody> |
SupportLoaderAdapter.onCreateLoader(int id,
android.os.Bundle bundle) |
| Modifier and Type | Method and Description |
|---|---|
List<T> |
GsonResponseParser.handleResponse(HeaderAndBody httpResponse,
Class<T> responseType) |
void |
LoaderAdapter.onLoadFinished(android.content.Loader<HeaderAndBody> loader,
HeaderAndBody data) |
void |
SupportLoaderAdapter.onLoadFinished(android.support.v4.content.Loader<HeaderAndBody> loader,
HeaderAndBody data) |
| Modifier and Type | Method and Description |
|---|---|
void |
LoaderAdapter.onLoaderReset(android.content.Loader<HeaderAndBody> loader) |
void |
SupportLoaderAdapter.onLoaderReset(android.support.v4.content.Loader<HeaderAndBody> loader) |
void |
LoaderAdapter.onLoadFinished(android.content.Loader<HeaderAndBody> loader,
HeaderAndBody data) |
void |
SupportLoaderAdapter.onLoadFinished(android.support.v4.content.Loader<HeaderAndBody> loader,
HeaderAndBody data) |
| Modifier and Type | Method and Description |
|---|---|
HeaderAndBody |
ReadLoader.loadInBackground() |
HeaderAndBody |
RemoveLoader.loadInBackground() |
HeaderAndBody |
SaveLoader.loadInBackground() |
| Modifier and Type | Method and Description |
|---|---|
HeaderAndBody |
SupportReadLoader.loadInBackground() |
HeaderAndBody |
SupportRemoveLoader.loadInBackground() |
HeaderAndBody |
SupportSaveLoader.loadInBackground() |
| Modifier and Type | Method and Description |
|---|---|
ReadFilter |
URIBodyPageParser.getNextFilter(HeaderAndBody result,
PageConfig config) |
ReadFilter |
URIPageHeaderParser.getNextFilter(HeaderAndBody result,
PageConfig config) |
ReadFilter |
URIBodyPageParser.getPreviousFilter(HeaderAndBody result,
PageConfig config) |
ReadFilter |
URIPageHeaderParser.getPreviousFilter(HeaderAndBody result,
PageConfig config) |
| Modifier and Type | Method and Description |
|---|---|
HeaderAndBody |
PipeHandler.onRawRead(Pipe<T> requestingPipe) |
HeaderAndBody |
PipeHandler.onRawReadWithFilter(ReadFilter filter,
Pipe<T> requestingPipe) |
HeaderAndBody |
PipeHandler.onRawSave(String id,
byte[] item) |
| Modifier and Type | Method and Description |
|---|---|
List<T> |
ResponseParser.handleResponse(HeaderAndBody response,
Class<T> responseType) |
| Modifier and Type | Method and Description |
|---|---|
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.
|
Copyright © 2014 JBoss by Red Hat. All rights reserved.