Package com.flowable.core.idm.api
Interface UserAccountDefinitionRegistrationBuilder
- All Known Implementing Classes:
- UserAccountDefinitionRegistrationBuilderImpl
public interface UserAccountDefinitionRegistrationBuilder
Builder for bulk registration of User Account Definitions.
- Author:
- Filip Hrisafov
- 
Method SummaryModifier and Type Method Description UserAccountDefinitionRegistrationBuilderaddInputStream(java.lang.String resourceName, java.io.InputStream inputStream)Register the static conversation definitions defined in theinputStreamwith aresourceNameUserAccountDefinitionRegistrationBuilderaddUserAccountDefinitionModel(UserAccountDefinitionModel userAccountDefinitionModel)Register the static user account definitionjava.util.List<UserAccountDefinition>register()Perform the registration of all registered definitions within the resourcesUserAccountDefinitionRegistrationBuildertenantId(java.lang.String tenantId)Register the user account definitions with the giventenantId
- 
Method Details- 
addInputStreamUserAccountDefinitionRegistrationBuilder addInputStream(java.lang.String resourceName, java.io.InputStream inputStream)Register the static conversation definitions defined in theinputStreamwith aresourceName- Parameters:
- resourceName- the name of the resource
- inputStream- the stream containing the conversation definition schema
- Returns:
- the builder for chaining
 
- 
addUserAccountDefinitionModelUserAccountDefinitionRegistrationBuilder addUserAccountDefinitionModel(UserAccountDefinitionModel userAccountDefinitionModel)Register the static user account definition- Parameters:
- userAccountDefinitionModel- the user account definition model
- Returns:
- the builder for chainingO
 
- 
tenantIdRegister the user account definitions with the giventenantId- Parameters:
- tenantId- the tenant id for the definitions
 
- 
registerjava.util.List<UserAccountDefinition> register()Perform the registration of all registered definitions within the resources- Returns:
- the list of all registered UserAccountDefinition(s)
 
 
-