Newer Version Available
AccountCreator Interface
Creates Account records that will be associated with Chatter Answers users.
Namespace
Usage
The ChatterAnswers.AccountCreator is specified in the registrationClassName attribute of a chatteranswers:registration Visualforce component. This interface is called by Chatter Answers and allows for custom creation of Account records used for portal users.
To implement the ChatterAnswers.AccountCreator interface, you must first
declare a class with the implements keyword as follows:
Next, your class must provide an implementation for the following
method:
The implemented method must be declared as global or public.
AccountCreator Methods
The following are methods for AccountCreator.
createAccount(firstName, lastName, siteAdminId)
Accepts basic user information and creates an Account record.
The implementation of this method returns the account ID.
Signature
public String createAccount(String firstName, String lastName, Id siteAdminId)
Parameters
Return Value
Type: String