com.stormpath.sdk.account.CreateAccountRequestBuilder Maven / Gradle / Ivy
/*
* Copyright 2013 Stormpath, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.stormpath.sdk.account;
/**
* A Builder to construct {@link com.stormpath.sdk.account.CreateAccountRequest}s.
*
* @see com.stormpath.sdk.application.Application#createAccount(com.stormpath.sdk.account.CreateAccountRequest)
* @since 0.9
*/
public interface CreateAccountRequestBuilder {
/**
* Directive to explicitly overwrite the registration workflow of the Login Source for new Accounts.
*
* If {@code registrationWorkflowEnabled} is {@code true}, the account registration workflow will be triggered
* no matter what the Login Source configuration is.
*
* If {@code registrationWorkflowEnabled} is {@code false}, the account registration workflow will NOT
* be triggered, no matter what the Login Source configuration is.
*
* If you want to ensure the registration workflow behavior matches the Login Source default, just do not call this
* method.
*
*
* @param registrationWorkflowEnabled whether or not the account registration workflow will be triggered, no matter
* what the Login Source configuration is.
* @return the builder instance for method chaining.
*/
CreateAccountRequestBuilder setRegistrationWorkflowEnabled(boolean registrationWorkflowEnabled);
/**
* Directive used to specify the submitted account has a password in a specific MCF format to be imported.
*
* @param passwordFormat the {@link PasswordFormat} used to encrypt the account's password
* @return the builder instance for method chaining.
*
* @since 1.0.RC4.6
*/
CreateAccountRequestBuilder setPasswordFormat(PasswordFormat passwordFormat);
/**
* Ensures that after a Account is created, the creation response is retrieved with the specified account's
* options. This enhances performance by leveraging a single request to retrieve multiple related
* resources you know you will use.
*
* @return the builder instance for method chaining.
* @throws IllegalArgumentException if {@code options} is null.
*/
CreateAccountRequestBuilder withResponseOptions(AccountOptions options) throws IllegalArgumentException;
/**
* Creates a new {@code CreateAccountRequest} instance based on the current builder state.
*
* @return a new {@code CreateAccountRequest} instance based on the current builder state.
*/
CreateAccountRequest build();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy