http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/642bf9ad/sdks/android/doc/org/usergrid/android/client/Client.html ---------------------------------------------------------------------- diff --git a/sdks/android/doc/org/usergrid/android/client/Client.html b/sdks/android/doc/org/usergrid/android/client/Client.html deleted file mode 100644 index beeba0c..0000000 --- a/sdks/android/doc/org/usergrid/android/client/Client.html +++ /dev/null @@ -1,2389 +0,0 @@ - - - - - - -Client - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.usergrid.android.client -
-Class Client

-
-java.lang.Object
-  extended by org.usergrid.android.client.Client
-
-
-
-
public class Client
extends java.lang.Object
- - -

-The Client class for accessing the Usergrid API. Start by instantiating this - class though the appropriate constructor. -

- -

-


- -

- - - - - - - - - - - - - - - -
-Nested Class Summary
-static interfaceClient.Query - -
-           
-static classClient.QueuePosition - -
-           
- - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static booleanFORCE_PUBLIC_API - -
-           
-static java.lang.StringLOCAL_API_URL - -
-           
-static java.lang.StringLOCAL_STANDALONE_API_URL - -
-           
-static java.lang.StringLOCAL_TOMCAT_API_URL - -
-           
-static java.lang.StringPUBLIC_API_URL - -
-           
-  - - - - - - - - - - - - - -
-Constructor Summary
Client() - -
-          Default constructor for instantiating a client.
Client(java.lang.String applicationId) - -
-          Instantiate client for a specific app
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- ApiResponseaddSubscriber(java.lang.String publisherQueue, - java.lang.String subscriberQueue) - -
-           
- ApiResponseaddUserToGroup(java.lang.String userId, - java.lang.String groupId) - -
-          Adds a user to the specified groups.
- voidaddUserToGroupAsync(java.lang.String userId, - java.lang.String groupId, - ApiResponseCallback callback) - -
-          Adds a user to the specified groups.
- ApiResponseapiRequest(org.springframework.http.HttpMethod method, - java.util.Map<java.lang.String,java.lang.Object> params, - java.lang.Object data, - java.lang.String... segments) - -
-          High-level Usergrid API request.
- ApiResponseauthorizeAppClient(java.lang.String clientId, - java.lang.String clientSecret) - -
-          Log the app in with it's client id and client secret key.
- voidauthorizeAppClientAsync(java.lang.String clientId, - java.lang.String clientSecret, - ApiResponseCallback callback) - -
-          Log the app in with it's client id and client secret key.
- ApiResponseauthorizeAppUser(java.lang.String email, - java.lang.String password) - -
-          Log the user in and get a valid access token.
- voidauthorizeAppUserAsync(java.lang.String email, - java.lang.String password, - ApiResponseCallback callback) - -
-          Log the user in and get a valid access token.
- ApiResponseauthorizeAppUserViaFacebook(java.lang.String fb_access_token) - -
-          Log the user in with their Facebook access token retrived via Facebook - OAuth.
- voidauthorizeAppUserViaFacebookAsync(java.lang.String fb_access_token, - ApiResponseCallback callback) - -
-          Log the user in with their numeric pin-code and get a valid access token.
- ApiResponseauthorizeAppUserViaPin(java.lang.String email, - java.lang.String pin) - -
-          Log the user in with their numeric pin-code and get a valid access token.
- voidauthorizeAppUserViaPinAsync(java.lang.String email, - java.lang.String pin, - ApiResponseCallback callback) - -
-          Log the user in with their numeric pin-code and get a valid access token.
- ApiResponseconnectEntities(java.lang.String connectingEntityType, - java.lang.String connectingEntityId, - java.lang.String connectionType, - java.lang.String connectedEntityId) - -
-          Connect two entities together.
- voidconnectEntitiesAsync(java.lang.String connectingEntityType, - java.lang.String connectingEntityId, - java.lang.String connectionType, - java.lang.String connectedEntityId, - ApiResponseCallback callback) - -
-          Connect two entities together.
- ApiResponsecreateEntity(Entity entity) - -
-          Create a new entity on the server.
- ApiResponsecreateEntity(java.util.Map<java.lang.String,java.lang.Object> properties) - -
-          Create a new entity on the server from a set of properties.
- voidcreateEntityAsync(Entity entity, - ApiResponseCallback callback) - -
-          Create a new entity on the server.
- voidcreateEntityAsync(java.util.Map<java.lang.String,java.lang.Object> properties, - ApiResponseCallback callback) - -
-          Create a new entity on the server from a set of properties.
- ApiResponsecreateGroup(java.lang.String groupPath) - -
-          Creates a group with the specified group path.
- ApiResponsecreateGroup(java.lang.String groupPath, - java.lang.String groupTitle) - -
-          Creates a group with the specified group path and group title.
- voidcreateGroupAsync(java.lang.String groupPath, - ApiResponseCallback callback) - -
-          Creates a group with the specified group path.
- voidcreateGroupAsync(java.lang.String groupPath, - java.lang.String groupTitle, - ApiResponseCallback callback) - -
-          Creates a group with the specified group path and group title.
- ApiResponsecreateUser(java.lang.String username, - java.lang.String name, - java.lang.String email, - java.lang.String password) - -
-          Creates a user.
- voidcreateUserAsync(java.lang.String username, - java.lang.String name, - java.lang.String email, - java.lang.String password, - ApiResponseCallback callback) - -
-          Creates a user.
- ApiResponsedisconnectEntities(java.lang.String connectingEntityType, - java.lang.String connectingEntityId, - java.lang.String connectionType, - java.lang.String connectedEntityId) - -
-          Disconnect two entities.
- voiddisconnectEntitiesAsync(java.lang.String connectingEntityType, - java.lang.String connectingEntityId, - java.lang.String connectionType, - java.lang.String connectedEntityId, - ApiResponseCallback callback) - -
-          Disconnect two entities.
- java.lang.StringgetAccessToken() - -
-           
- java.lang.StringgetApiUrl() - -
-           
- java.lang.StringgetApplicationId() - -
-           
- java.lang.StringgetClientId() - -
-           
- java.lang.StringgetClientSecret() - -
-           
- java.lang.StringgetCurrentOrganization() - -
-           
- java.util.Map<java.lang.String,Group>getGroupsForUser(java.lang.String userId) - -
-          Get the groups for the user.
- voidgetGroupsForUserAsync(java.lang.String userId, - GroupsRetrievedCallback callback) - -
-          Get the groups for the user.
- UsergetLoggedInUser() - -
-           
- ApiResponsegetMessages(java.lang.String path, - java.lang.String consumer, - java.util.UUID last, - java.lang.Long time, - java.lang.Integer prev, - java.lang.Integer next, - java.lang.Integer limit, - Client.QueuePosition pos, - java.lang.Boolean update, - java.lang.Boolean sync) - -
-           
- - - - - -
-<T> T
-
httpRequest(org.springframework.http.HttpMethod method, - java.lang.Class<T> cls, - java.util.Map<java.lang.String,java.lang.Object> params, - java.lang.Object data, - java.lang.String... segments) - -
-          Low-level HTTP request method.
- voidinit() - -
-           
- ApiResponsepostGroupActivity(java.lang.String groupId, - Activity activity) - -
-          Posts an activity to a group.
- ApiResponsepostGroupActivity(java.lang.String verb, - java.lang.String title, - java.lang.String content, - java.lang.String category, - User user, - Entity object, - java.lang.String objectType, - java.lang.String objectName, - java.lang.String objectContent) - -
-          Creates and posts an activity to a group.
- voidpostGroupActivityAsync(java.lang.String verb, - java.lang.String title, - java.lang.String content, - java.lang.String category, - User user, - Entity object, - java.lang.String objectType, - java.lang.String objectName, - java.lang.String objectContent, - ApiResponseCallback callback) - -
-          Creates and posts an activity to a group.
- ApiResponsepostMessage(java.lang.String path, - java.util.List<java.util.Map<java.lang.String,java.lang.Object>> messages) - -
-           
- ApiResponsepostMessage(java.lang.String path, - java.util.Map<java.lang.String,java.lang.Object> message) - -
-           
- ApiResponsepostUserActivity(java.lang.String userId, - Activity activity) - -
-          Posts an activity to a user.
- ApiResponsepostUserActivity(java.lang.String verb, - java.lang.String title, - java.lang.String content, - java.lang.String category, - User user, - Entity object, - java.lang.String objectType, - java.lang.String objectName, - java.lang.String objectContent) - -
-          Creates and posts an activity to a user.
- voidpostUserActivityAsync(java.lang.String verb, - java.lang.String title, - java.lang.String content, - java.lang.String category, - User user, - Entity object, - java.lang.String objectType, - java.lang.String objectName, - java.lang.String objectContent, - ApiResponseCallback callback) - -
-          Creates and posts an activity to a user.
- Client.QueryqueryActivityFeedForGroup(java.lang.String groupId) - -
-          Get a group's activity feed.
- voidqueryActivityFeedForGroupAsync(java.lang.String groupId, - QueryResultsCallback callback) - -
-          Get a group's activity feed.
- Client.QueryqueryActivityFeedForUser(java.lang.String userId) - -
-          Get a user's activity feed.
- voidqueryActivityFeedForUserAsync(java.lang.String userId, - QueryResultsCallback callback) - -
-          Get a user's activity feed.
- Client.QueryqueryEntitiesRequest(org.springframework.http.HttpMethod method, - java.util.Map<java.lang.String,java.lang.Object> params, - java.lang.Object data, - java.lang.String... segments) - -
-          Perform a query request and return a query object.
- voidqueryEntitiesRequestAsync(QueryResultsCallback callback, - org.springframework.http.HttpMethod method, - java.util.Map<java.lang.String,java.lang.Object> params, - java.lang.Object data, - java.lang.String... segments) - -
-          Perform a query request and return a query object.
- Client.QueryqueryEntityConnections(java.lang.String connectingEntityType, - java.lang.String connectingEntityId, - java.lang.String connectionType, - java.lang.String ql) - -
-          Query the connected entities.
- voidqueryEntityConnectionsAsync(java.lang.String connectingEntityType, - java.lang.String connectingEntityId, - java.lang.String connectionType, - java.lang.String ql, - QueryResultsCallback callback) - -
-          Query the connected entities.
- Client.QueryqueryEntityConnectionsWithinLocation(java.lang.String connectingEntityType, - java.lang.String connectingEntityId, - java.lang.String connectionType, - float distance, - android.location.Location location, - java.lang.String ql) - -
-          Query the connected entities within distance of a specific point.
- voidqueryEntityConnectionsWithinLocationAsync(java.lang.String connectingEntityType, - java.lang.String connectingEntityId, - java.lang.String connectionType, - float distance, - android.location.Location location, - java.lang.String ql, - QueryResultsCallback callback) - -
-          Query the connected entities within distance of a specific point.
- Client.QueryqueryQueuesRequest(org.springframework.http.HttpMethod method, - java.util.Map<java.lang.String,java.lang.Object> params, - java.lang.Object data, - java.lang.String queuePath) - -
-           
- Client.QueryqueryUsers() - -
-          Perform a query of the users collection.
- Client.QueryqueryUsers(java.lang.String ql) - -
-          Perform a query of the users collection using the provided query command.
- voidqueryUsersAsync(QueryResultsCallback callback) - -
-          Perform a query of the users collection.
- voidqueryUsersAsync(java.lang.String ql, - QueryResultsCallback callback) - -
-          Perform a query of the users collection using the provided query command.
- Client.QueryqueryUsersForGroup(java.lang.String groupId) - -
-          Queries the users for the specified group.
- voidqueryUsersForGroupAsync(java.lang.String groupId, - QueryResultsCallback callback) - -
-          Queries the users for the specified group.
- voidqueryUsersNearLocation(float distance, - android.location.Location location, - java.lang.String ql, - QueryResultsCallback callback) - -
-          Perform a query of the users collection within the specified distance of - the specified location and optionally using the provided query command.
- Client.QueryqueryUsersWithinLocation(float distance, - android.location.Location location, - java.lang.String ql) - -
-          Perform a query of the users collection within the specified distance of - the specified location and optionally using the provided query command.
- DeviceregisterDevice(android.content.Context context, - java.util.Map<java.lang.String,java.lang.Object> properties) - -
-          Registers a device using the device's unique device ID.
- voidregisterDeviceAsync(android.content.Context context, - java.util.Map<java.lang.String,java.lang.Object> properties, - DeviceRegistrationCallback callback) - -
-          Registers a device using the device's unique device ID.
- ApiResponseremoveSubscriber(java.lang.String publisherQueue, - java.lang.String subscriberQueue) - -
-           
- voidsetAccessToken(java.lang.String accessToken) - -
-           
- voidsetApiUrl(java.lang.String apiUrl) - -
-           
- voidsetApplicationId(java.lang.String applicationId) - -
-           
- voidsetClientId(java.lang.String clientId) - -
-           
- voidsetClientSecret(java.lang.String clientSecret) - -
-           
- voidsetCurrentOrganization(java.lang.String currentOrganization) - -
-           
- voidsetLoggedInUser(User loggedInUser) - -
-           
- ClientwithApiUrl(java.lang.String apiUrl) - -
-           
- ClientwithApplicationId(java.lang.String applicationId) - -
-           
- ClientwithClientId(java.lang.String clientId) - -
-           
- ClientwithClientSecret(java.lang.String clientSecret) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-FORCE_PUBLIC_API

-
-public static boolean FORCE_PUBLIC_API
-
-
-
-
-
- -

-PUBLIC_API_URL

-
-public static java.lang.String PUBLIC_API_URL
-
-
-
-
-
- -

-LOCAL_STANDALONE_API_URL

-
-public static java.lang.String LOCAL_STANDALONE_API_URL
-
-
-
-
-
- -

-LOCAL_TOMCAT_API_URL

-
-public static java.lang.String LOCAL_TOMCAT_API_URL
-
-
-
-
-
- -

-LOCAL_API_URL

-
-public static java.lang.String LOCAL_API_URL
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-Client

-
-public Client()
-
-
Default constructor for instantiating a client. -

-

-
- -

-Client

-
-public Client(java.lang.String applicationId)
-
-
Instantiate client for a specific app -

-

-
Parameters:
applicationId - the application id or name
-
- - - - - - - - -
-Method Detail
- -

-init

-
-public void init()
-
-
-
-
-
-
- -

-getApiUrl

-
-public java.lang.String getApiUrl()
-
-
- -
Returns:
the Usergrid API url (default: http://api.usergrid.com)
-
-
-
- -

-setApiUrl

-
-public void setApiUrl(java.lang.String apiUrl)
-
-
-
Parameters:
apiUrl - the Usergrid API url (default: http://api.usergrid.com)
-
-
-
- -

-withApiUrl

-
-public Client withApiUrl(java.lang.String apiUrl)
-
-
-
Parameters:
apiUrl - the Usergrid API url (default: http://api.usergrid.com) -
Returns:
Client object for method call chaining
-
-
-
- -

-getApplicationId

-
-public java.lang.String getApplicationId()
-
-
- -
Returns:
the application id or name
-
-
-
- -

-setApplicationId

-
-public void setApplicationId(java.lang.String applicationId)
-
-
-
Parameters:
applicationId - the application id or name
-
-
-
- -

-withApplicationId

-
-public Client withApplicationId(java.lang.String applicationId)
-
-
-
Parameters:
applicationId - the application id or name -
Returns:
Client object for method call chaining
-
-
-
- -

-getClientId

-
-public java.lang.String getClientId()
-
-
- -
Returns:
the client key id for making calls as the application-owner. Not - safe for most mobile use.
-
-
-
- -

-setClientId

-
-public void setClientId(java.lang.String clientId)
-
-
-
Parameters:
clientId - the client key id for making calls as the application-owner. - Not safe for most mobile use.
-
-
-
- -

-withClientId

-
-public Client withClientId(java.lang.String clientId)
-
-
-
Parameters:
clientId - the client key id for making calls as the application-owner. - Not safe for most mobile use. -
Returns:
Client object for method call chaining
-
-
-
- -

-getClientSecret

-
-public java.lang.String getClientSecret()
-
-
- -
Returns:
the client key id for making calls as the application-owner. Not - safe for most mobile use.
-
-
-
- -

-setClientSecret

-
-public void setClientSecret(java.lang.String clientSecret)
-
-
-
Parameters:
clientSecret - the client key id for making calls as the application-owner. - Not safe for most mobile use.
-
-
-
- -

-withClientSecret

-
-public Client withClientSecret(java.lang.String clientSecret)
-
-
-
Parameters:
clientSecret - the client key id for making calls as the application-owner. - Not safe for most mobile use. -
Returns:
Client object for method call chaining
-
-
-
- -

-getLoggedInUser

-
-public User getLoggedInUser()
-
-
- -
Returns:
the logged-in user after a successful authorizeAppUser request
-
-
-
- -

-setLoggedInUser

-
-public void setLoggedInUser(User loggedInUser)
-
-
-
Parameters:
loggedInUser - the logged-in user, usually not set by host application
-
-
-
- -

-getAccessToken

-
-public java.lang.String getAccessToken()
-
-
- -
Returns:
the OAuth2 access token after a successful authorize request
-
-
-
- -

-setAccessToken

-
-public void setAccessToken(java.lang.String accessToken)
-
-
-
Parameters:
accessToken - an OAuth2 access token. Usually not set by host application
-
-
-
- -

-getCurrentOrganization

-
-public java.lang.String getCurrentOrganization()
-
-
- -
Returns:
the currentOrganization
-
-
-
- -

-setCurrentOrganization

-
-public void setCurrentOrganization(java.lang.String currentOrganization)
-
-
-
Parameters:
currentOrganization -
-
-
-
- -

-httpRequest

-
-public <T> T httpRequest(org.springframework.http.HttpMethod method,
-                         java.lang.Class<T> cls,
-                         java.util.Map<java.lang.String,java.lang.Object> params,
-                         java.lang.Object data,
-                         java.lang.String... segments)
-
-
Low-level HTTP request method. Synchronous, blocks till response or - timeout. -

-

-
Parameters:
method - HttpMethod method
cls - class for the return type
params - parameters to encode as querystring or body parameters
data - JSON data to put in body
segments - REST url path segments (i.e. /segment1/segment2/segment3) -
Returns:
results marshalled into class specified in cls parameter
-
-
-
- -

-apiRequest

-
-public ApiResponse apiRequest(org.springframework.http.HttpMethod method,
-                              java.util.Map<java.lang.String,java.lang.Object> params,
-                              java.lang.Object data,
-                              java.lang.String... segments)
-
-
High-level Usergrid API request. -

-

-
Parameters:
method -
params -
data -
segments - -
Returns:
-
-
-
- -

-authorizeAppUser

-
-public ApiResponse authorizeAppUser(java.lang.String email,
-                                    java.lang.String password)
-
-
Log the user in and get a valid access token. -

-

-
Parameters:
email -
password - -
Returns:
non-null ApiResponse if request succeeds, check getError() for - "invalid_grant" to see if access is denied.
-
-
-
- -

-authorizeAppUserAsync

-
-public void authorizeAppUserAsync(java.lang.String email,
-                                  java.lang.String password,
-                                  ApiResponseCallback callback)
-
-
Log the user in and get a valid access token. Executes asynchronously in - background and the callbacks are called in the UI thread. -

-

-
Parameters:
email -
password -
callback -
-
-
-
- -

-authorizeAppUserViaPin

-
-public ApiResponse authorizeAppUserViaPin(java.lang.String email,
-                                          java.lang.String pin)
-
-
Log the user in with their numeric pin-code and get a valid access token. -

-

-
Parameters:
email -
pin - -
Returns:
non-null ApiResponse if request succeeds, check getError() for - "invalid_grant" to see if access is denied.
-
-
-
- -

-authorizeAppUserViaPinAsync

-
-public void authorizeAppUserViaPinAsync(java.lang.String email,
-                                        java.lang.String pin,
-                                        ApiResponseCallback callback)
-
-
Log the user in with their numeric pin-code and get a valid access token. - Executes asynchronously in background and the callbacks are called in the - UI thread. -

-

-
Parameters:
email -
pin -
callback -
-
-
-
- -

-authorizeAppUserViaFacebook

-
-public ApiResponse authorizeAppUserViaFacebook(java.lang.String fb_access_token)
-
-
Log the user in with their Facebook access token retrived via Facebook - OAuth. -

-

-
Parameters:
email -
pin - -
Returns:
non-null ApiResponse if request succeeds, check getError() for - "invalid_grant" to see if access is denied.
-
-
-
- -

-authorizeAppUserViaFacebookAsync

-
-public void authorizeAppUserViaFacebookAsync(java.lang.String fb_access_token,
-                                             ApiResponseCallback callback)
-
-
Log the user in with their numeric pin-code and get a valid access token. - Executes asynchronously in background and the callbacks are called in the - UI thread. -

-

-
Parameters:
email -
pin -
callback -
-
-
-
- -

-authorizeAppClient

-
-public ApiResponse authorizeAppClient(java.lang.String clientId,
-                                      java.lang.String clientSecret)
-
-
Log the app in with it's client id and client secret key. Not recommended - for production apps. -

-

-
Parameters:
email -
pin - -
Returns:
non-null ApiResponse if request succeeds, check getError() for - "invalid_grant" to see if access is denied.
-
-
-
- -

-authorizeAppClientAsync

-
-public void authorizeAppClientAsync(java.lang.String clientId,
-                                    java.lang.String clientSecret,
-                                    ApiResponseCallback callback)
-
-
Log the app in with it's client id and client secret key. Not recommended - for production apps. Executes asynchronously in background and the - callbacks are called in the UI thread. -

-

-
Parameters:
clientId -
clientSecret -
callback -
-
-
-
- -

-registerDevice

-
-public Device registerDevice(android.content.Context context,
-                             java.util.Map<java.lang.String,java.lang.Object> properties)
-
-
Registers a device using the device's unique device ID. -

-

-
Parameters:
context -
properties - -
Returns:
a Device object if success
-
-
-
- -

-registerDeviceAsync

-
-public void registerDeviceAsync(android.content.Context context,
-                                java.util.Map<java.lang.String,java.lang.Object> properties,
-                                DeviceRegistrationCallback callback)
-
-
Registers a device using the device's unique device ID. Executes - asynchronously in background and the callbacks are called in the UI - thread. -

-

-
Parameters:
context -
properties -
callback -
-
-
-
- -

-createEntity

-
-public ApiResponse createEntity(Entity entity)
-
-
Create a new entity on the server. -

-

-
Parameters:
entity - -
Returns:
an ApiResponse with the new entity in it.
-
-
-
- -

-createEntityAsync

-
-public void createEntityAsync(Entity entity,
-                              ApiResponseCallback callback)
-
-
Create a new entity on the server. Executes asynchronously in background - and the callbacks are called in the UI thread. -

-

-
Parameters:
entity -
callback -
-
-
-
- -

-createEntity

-
-public ApiResponse createEntity(java.util.Map<java.lang.String,java.lang.Object> properties)
-
-
Create a new entity on the server from a set of properties. Properties - must include a "type" property. -

-

-
Parameters:
properties - -
Returns:
an ApiResponse with the new entity in it.
-
-
-
- -

-createEntityAsync

-
-public void createEntityAsync(java.util.Map<java.lang.String,java.lang.Object> properties,
-                              ApiResponseCallback callback)
-
-
Create a new entity on the server from a set of properties. Properties - must include a "type" property. Executes asynchronously in background and - the callbacks are called in the UI thread. -

-

-
Parameters:
properties -
callback -
-
-
-
- -

-createUser

-
-public ApiResponse createUser(java.lang.String username,
-                              java.lang.String name,
-                              java.lang.String email,
-                              java.lang.String password)
-
-
Creates a user. -

-

-
Parameters:
username - required
name -
email -
password - -
Returns:
-
-
-
- -

-createUserAsync

-
-public void createUserAsync(java.lang.String username,
-                            java.lang.String name,
-