Interface B2BRegistrationService
-
- All Known Implementing Classes:
DefaultB2BRegistrationService
public interface B2BRegistrationServiceService methods that are used by the B2B registration process
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<EmailAddressModel>getEmailAddressesOfEmployees(java.util.List<EmployeeModel> employees)Gets the contact email address of the specified list of employeesjava.util.List<EmployeeModel>getEmployeesInUserGroup(java.lang.String userGroup)Gets the list of employees that are part of a given user group
-
-
-
Method Detail
-
getEmployeesInUserGroup
java.util.List<EmployeeModel> getEmployeesInUserGroup(java.lang.String userGroup)
Gets the list of employees that are part of a given user group- Parameters:
userGroup- The name of the user group- Returns:
- Employees within the user group
-
getEmailAddressesOfEmployees
java.util.List<EmailAddressModel> getEmailAddressesOfEmployees(java.util.List<EmployeeModel> employees)
Gets the contact email address of the specified list of employees- Parameters:
employees- List of employees to get email address from- Returns:
- List of email addresses. It is possible that the list is empty since employees are not required to have an email nor a contact address
-
-