Uses of Class
de.xima.fc.entities.UserProfile
-
-
Uses of UserProfile in de.xima.fc.api.entity
Methods in de.xima.fc.api.entity that return UserProfile Modifier and Type Method Description UserProfileUserProfileAPI. acceptDirectClientAuthorization(UserContext uc, UserProfile profile, DirectClientAuthorization authorization)Adds the given client authorization to the given profile and accepts it.UserProfileUserProfileAPI. addDirectClientAuthorization(UserContext uc, UserProfile userProfile, DirectClientAuthorization authorization)Adds the given client authorizations to the user profile.UserProfileUserProfileAPI. getById(UserContext uc, Long id)Reads the entity with the given ID.UserProfileUserProfileAPI. getByLoginId(UserContext uc, String loginId)Finds the user profile by the given login ID.UserProfileUserProfileAPI. getByUserName(UserContext uc, String userName)Finds the user profile with the given user nameUserProfileUserProfileAPI. getByUserProfile(UserContext uc, org.pac4j.core.profile.UserProfile pac4jProfile)Finds the formcycle user profile for the given pac4j profile.UserProfileUserProfileAPI. getByUuid(UserContext uc, String uuid)Finds the user profile with the given UUID.UserProfileUserProfileAPI. getByUuid(UserContext uc, UUID uuid)Finds the user credentials with the given UUID.UserProfileUserProfileAPI. getByVerifiedCallback(UserContext uc, String identifier, String clientName)Finds the user profile by the given callback information.UserProfileUserProfileAPI. getByVerifiedEmailAddress(UserContext uc, String email)Finds the user profile with the given verified email address.UserProfileUserProfileAPI. getByVerifiedPrimaryEmailAddress(UserContext uc, String email)Finds the user profile with the given verified primary email address.@NotNull UserProfileUserProfileAPI. mergeUserProfiles(UserContext uc, UserProfile main, UserProfile toBeMerged)Merges the a profile into another.UserProfileUserProfileAPI. update(UserContext uc, UserProfile entity)Updates the given user profile and returns the updated entity.Methods in de.xima.fc.api.entity with parameters of type UserProfile Modifier and Type Method Description UserProfileUserProfileAPI. acceptDirectClientAuthorization(UserContext uc, UserProfile profile, DirectClientAuthorization authorization)Adds the given client authorization to the given profile and accepts it.UserProfileUserProfileAPI. addDirectClientAuthorization(UserContext uc, UserProfile userProfile, DirectClientAuthorization authorization)Adds the given client authorizations to the user profile.booleanUserProfileAPI. canBeDeleted(UserContext uc, UserProfile profile)Checks whether or not the user profile can be deleted.@NotBlank StringUserProfileAPI. findUniqueUserName(UserContext uc, String candidate, UserProfile exclude)Finds a unique user name for the given candidate.List<DirectClientAuthorization>DirectClientAuthorizationAPI. getUnacceptedClientInvitations(UserContext uc, UserProfile userProfile)Returns the direct client authorizations for the given user profile that have not yet been accepted.booleanDirectClientAuthorizationAPI. hasUnacceptedClientInvitations(UserContext uc, UserProfile userProfile)Checks whether the given user profile has unaccepted client invitations.@NotNull UserProfileUserProfileAPI. mergeUserProfiles(UserContext uc, UserProfile main, UserProfile toBeMerged)Merges the a profile into another.UserProfileUserProfileAPI. update(UserContext uc, UserProfile entity)Updates the given user profile and returns the updated entity. -
Uses of UserProfile in de.xima.fc.api.rest.pub.impl.generic.model.response.user
Constructors in de.xima.fc.api.rest.pub.impl.generic.model.response.user with parameters of type UserProfile Constructor Description UserProfileResource(UserProfile entity, javax.ws.rs.core.UriInfo uriInfo, Locale locale) -
Uses of UserProfile in de.xima.fc.api.system
Methods in de.xima.fc.api.system with parameters of type UserProfile Modifier and Type Method Description booleanMailAPI. sendUserCredentialsResetMail(UserContext uc, UserProfile profile, String baseUrl)Sends a mail with a user credentials set/reset link.booleanMailAPI. sendUserCredentialsResetMail(UserContext uc, UserProfile profile, String baseUrl, String verifiedTargetEmailAddress)Sends a mail with a user credentials set/reset link.booleanMailAPI. sendUserProfileDeleteRequestMail(UserContext uc, UserProfile userProfile, String baseUrl)Sends a mail with a user profile delete request containing a link to delete the user profile.booleanMailAPI. sendUserProfileMergeRequestMail(UserContext uc, UserProfile userProfile, UserProfile toBeMerged, String baseUrl)Sends a mail with a user profile merge link.booleanMailAPI. sendUserProfileWelcomeMail(UserContext uc, UserProfile userProfile, String baseUrl)Sends an email to the primary email address of the user welcoming them and informing them that their profile has been created. -
Uses of UserProfile in de.xima.fc.dao.impl
Methods in de.xima.fc.dao.impl that return types with arguments of type UserProfile Modifier and Type Method Description Set<UserProfile>UserProfileDao. getByEmailAddress(IEntityContext ec, String email)protected IFCDaoActionHook<UserProfile>UserProfileDao. getPostActionHook()protected IFCDaoActionHook<UserProfile>UserProfileDao. getPreActionHook()Set<UserProfile>UserProfileDao. getProfilesExclusiveToClients(IEntityContext ec, Set<Mandant> clients) -
Uses of UserProfile in de.xima.fc.dao.interfaces
Methods in de.xima.fc.dao.interfaces that return UserProfile Modifier and Type Method Description @NotNull UserProfileIUserProfileDao. acceptDirectClientAuthorization(IEntityContext ec, UserProfile profile, DirectClientAuthorization authorization)Adds the given client authorization to the given profile and accepts it.@NotNull UserProfileIUserProfileDao. addDirectClientAuthorization(IEntityContext ec, UserProfile userProfile, DirectClientAuthorization authorization)Adds the given client authorizations to the user profile.UserProfileIUserProfileDao. getByLoginId(IEntityContext ec, String loginId)Finds the user profile by the given login ID.UserProfileIUserProfileDao. getByUserName(IEntityContext ec, String userName)Finds the user profile with the given user nameUserProfileIUserProfileDao. getByUuid(IEntityContext ec, String uuid)Finds the user profile with the given UUID.UserProfileIUserProfileDao. getByUuid(IEntityContext ec, UUID uuid)Finds the user credentials with the given UUID.UserProfileIUserProfileDao. getByVerifiedEmailAddress(IEntityContext ec, String email)Finds the user profile with the given email address.UserProfileIUserProfileDao. getByVerifiedPrimaryEmailAddress(IEntityContext ec, String email)Finds the user profile with the given verified primary email address.@NotNull UserProfileIUserProfileDao. mergeUserProfiles(IEntityContext ec, UserProfile main, UserProfile toBeMerged)Merges the a profile into another.UserProfileIUserProfileDao. validateUserLogin(IEntityContext ec, String loginId, String password)Validates the given user credentials and returns the user profile if successfull.Methods in de.xima.fc.dao.interfaces that return types with arguments of type UserProfile Modifier and Type Method Description Set<UserProfile>IUserProfileDao. getByEmailAddress(IEntityContext ec, String email)Finds the user profiles with the given email address.@NotNull Set<UserProfile>IUserProfileDao. getProfilesExclusiveToClients(IEntityContext ec, Set<Mandant> clients)Finds all user profiles that are exclusive to the given clients, meaning they are only part of those clients and don't have any other special roles such essystem admin.Methods in de.xima.fc.dao.interfaces with parameters of type UserProfile Modifier and Type Method Description @NotNull UserProfileIUserProfileDao. acceptDirectClientAuthorization(IEntityContext ec, UserProfile profile, DirectClientAuthorization authorization)Adds the given client authorization to the given profile and accepts it.@NotNull UserProfileIUserProfileDao. addDirectClientAuthorization(IEntityContext ec, UserProfile userProfile, DirectClientAuthorization authorization)Adds the given client authorizations to the user profile.booleanIUserProfileDao. canBeDeleted(IEntityContext ec, UserProfile profile)Checks whether or not the user profile can be deleted.@NotBlank StringIUserProfileDao. findUniqueUserName(IEntityContext ec, String candidate, UserProfile exclude)Finds a unique user name for the given candidate.List<FormRecordMessage>IFormRecordMessageDao. getAllBySenderUserProfile(IEntityContext ec, UserProfile sender)Returns all messages sent by the given user profile.List<DirectClientAuthorization>IDirectClientAuthorizationDao. getUnacceptedClientInvitations(IEntityContext ec, UserProfile userProfile)Returns the direct client authorizations for the given user profile that have not yet been accepted.booleanIDirectClientAuthorizationDao. hasUnacceptedClientInvitations(IEntityContext ec, UserProfile userProfile)Checks whether the given user profile has not yet accepted client invitations.@NotNull UserProfileIUserProfileDao. mergeUserProfiles(IEntityContext ec, UserProfile main, UserProfile toBeMerged)Merges the a profile into another. -
Uses of UserProfile in de.xima.fc.entities
Methods in de.xima.fc.entities that return UserProfile Modifier and Type Method Description UserProfileUserProfileFile. getBaseEntity()UserProfileUserProfile. getMergeRequestProfile()UserProfileDirectClientAuthorization. getUserProfile()UserProfileUserCredentials. getUserProfile()UserProfileUserEmail. getUserProfile()UserProfileUserIdentity. getUserProfile()UserProfileUserProfileMfa. getUserProfile()UserProfileUserRefreshToken. getUserProfile()Methods in de.xima.fc.entities that return types with arguments of type UserProfile Modifier and Type Method Description Set<UserProfile>FormRecordChat. getMemberProfiles()Set<UserProfile>FormEingang. getReadUserProfiles()Set<UserProfile>FormRecordMessage. getReadUserProfiles()Gets the user profiles that have read the message.Set<UserProfile>UserPortal. getUserProfiles()Methods in de.xima.fc.entities with parameters of type UserProfile Modifier and Type Method Description voidUserProfileFile. setBaseEntity(UserProfile baseEntity)voidUserProfile. setMergeRequestProfile(UserProfile mergeRequestProfile)voidDirectClientAuthorization. setUserProfile(UserProfile userProfile)voidUserCredentials. setUserProfile(UserProfile userProfile)voidUserEmail. setUserProfile(UserProfile userProfile)voidUserIdentity. setUserProfile(UserProfile profile)voidUserProfileMfa. setUserProfile(UserProfile userProfile)voidUserRefreshToken. setUserProfile(UserProfile userProfile)Method parameters in de.xima.fc.entities with type arguments of type UserProfile Modifier and Type Method Description voidFormRecordChat. setMemberProfiles(Set<UserProfile> memberProfiles)voidFormEingang. setReadUserProfiles(Set<UserProfile> readUserProfiles)voidFormRecordMessage. setReadUserProfiles(Set<UserProfile> readUserProfiles)voidUserPortal. setUserProfiles(Set<UserProfile> userProfiles) -
Uses of UserProfile in de.xima.fc.entities.interfaces
Methods in de.xima.fc.entities.interfaces that return UserProfile Modifier and Type Method Description UserProfileIUserIdentity. getUserProfile() -
Uses of UserProfile in de.xima.fc.gui.bean
Methods in de.xima.fc.gui.bean with parameters of type UserProfile Modifier and Type Method Description StringAvatarBean. getInitialsByProfile(UserProfile profile) -
Uses of UserProfile in de.xima.fc.gui.bean.settings
Methods in de.xima.fc.gui.bean.settings that return types with arguments of type UserProfile Modifier and Type Method Description Set<UserProfile>ClientBean. getUserProfilesToDelete() -
Uses of UserProfile in de.xima.fc.gui.bean.user
Methods in de.xima.fc.gui.bean.user that return UserProfile Modifier and Type Method Description UserProfileClientAuthorizationBean. getFoundUserProfile()Methods in de.xima.fc.gui.bean.user that return types with arguments of type UserProfile Modifier and Type Method Description DaoLazyDataModel<UserProfile>UserProfileAdministrationBean. getModel()Methods in de.xima.fc.gui.bean.user with parameters of type UserProfile Modifier and Type Method Description booleanUserProfileAdministrationBean. canSigninToBackend(UserProfile profile)StringUserProfileAdministrationBean. getPortalUserHelpText(UserProfile profile)List<UserIdentity>UserProfileAdministrationBean. getVerifiedUserIdentities(UserProfile profile)booleanUserProfileAdministrationBean. hasAnyBackendPermission(UserProfile profile)booleanUserDiscoveryBean. hasIdentity(UserProfile profile, IClientDescriptor clientDescriptor, String identifier)booleanUserProfileAdministrationBean. isLoginLocked(UserProfile profile)booleanUserProfileAdministrationBean. isPortalUser(UserProfile profile)booleanUserProfileAdministrationBean. isSystemAdmin(UserProfile profile) -
Uses of UserProfile in de.xima.fc.gui.common.bean
Methods in de.xima.fc.gui.common.bean that return UserProfile Modifier and Type Method Description UserProfileUserProfileMenuBean. getCurrentUserProfile() -
Uses of UserProfile in de.xima.fc.gui.common.bean.profile
Methods in de.xima.fc.gui.common.bean.profile that return UserProfile Modifier and Type Method Description UserProfileUserEmailPanelBean. getOtherProfileWithVerifedMail(UserEmail email)UserProfileUserProfileConfigBean. getProfile()Methods in de.xima.fc.gui.common.bean.profile with parameters of type UserProfile Modifier and Type Method Description voidUserIdentityPanelBean. addCredentialsAuthenticator(UserProfile profile, BiConsumer<javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse> profileUpdatedCallback)voidUserEmailPanelBean. addEmail(UserProfile profile, Runnable profileUpdatedCallback)voidUserIdentityPanelBean. addUserIdentity(UserProfile profile, BiConsumer<javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse> profileUpdatedCallback)booleanUserProfileSecurityPanelBean. canUserCredentialsBeDeleted(UserProfile profile)voidUserProfileSecurityPanelBean. generateNewPassword(UserProfile profile)List<UserEmail>UserEmailPanelBean. getOrderedUserEmails(UserProfile profile)voidUserProfileSecurityPanelBean. handleMfaTypeChange(UserProfile profile, Runnable profileUpdatedCallback, boolean adminOption)voidUserIdentityPanelBean. init(UserProfile profile, BiConsumer<javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse> profileUpdatedCallback)voidUserProfileSecurityPanelBean. init(UserProfile profile)booleanUserProfileInfoPanelBean. isOnlyIndirect(UserProfile profile, Mandant client)booleanUserEmailPanelBean. isShowAdminOptions(UserProfile profile)booleanUserIdentityPanelBean. isShowAdminOptions(UserProfile profile)booleanUserProfileSecurityPanelBean. isShowAdminOptions(UserProfile profile)booleanUserEmailPanelBean. isShowNewOption(UserProfile profile)booleanUserProfileSecurityPanelBean. isShowNewPassword(UserProfile profile)booleanUserProfileSecurityPanelBean. isShowTotpDetails(UserProfile profile)voidUserProfileSecurityPanelBean. removeLasAuthenticationInstant(UserProfile profile, Runnable profileUpdatedCallback)voidUserProfileSecurityPanelBean. removeUserCredentials(UserProfile profile, Runnable profileUpdatedCallback)voidUserProfileSecurityPanelBean. sendMfaRegistrationMail(UserProfile profile, Runnable profileUpdatedCallback)voidUserProfileSecurityPanelBean. sendMfaRemovalRequestMail(UserProfile profile, Runnable profileUpdatedCallback)voidUserProfileSecurityPanelBean. sendUserCredentialsSetMail(UserProfile profile, Runnable profileUpdatedCallback) -
Uses of UserProfile in de.xima.fc.gui.common.bean.security
Methods in de.xima.fc.gui.common.bean.security that return UserProfile Modifier and Type Method Description UserProfileUserProfileDeleteBean. getProfile()UserProfileUserCredentialsSigninBean. getResetCredentialsProfile() -
Uses of UserProfile in de.xima.fc.gui.common.utils
Methods in de.xima.fc.gui.common.utils with parameters of type UserProfile Modifier and Type Method Description static de.xima.cmn.criteria.FilterCriterionFilterCriterionUtils. getDefalutFormRecordCreatorFilterCriterion(UserProfile profile)static de.xima.cmn.criteria.FilterCriterionFilterCriterionUtils. getDefalutFormRecordEditorFilterCriterion(UserProfile profile)Deprecated.static de.xima.cmn.criteria.FilterCriterionFilterCriterionUtils. getDefalutFormRecordSubmittedFilterCriterion(UserProfile profile) -
Uses of UserProfile in de.xima.fc.gui.model.user
Methods in de.xima.fc.gui.model.user that return UserProfile Modifier and Type Method Description UserProfileUserEmailQueryResult. getProfile()Methods in de.xima.fc.gui.model.user that return types with arguments of type UserProfile Modifier and Type Method Description ISerializableConsumer<UserProfile>SystemUserProfileMeta. selectedCallback()Methods in de.xima.fc.gui.model.user with parameters of type UserProfile Modifier and Type Method Description voidUserEmailQueryResult. setProfile(UserProfile profile)Constructors in de.xima.fc.gui.model.user with parameters of type UserProfile Constructor Description UserEmailQueryResult(UserProfile profile) -
Uses of UserProfile in de.xima.fc.gui.utils
Methods in de.xima.fc.gui.utils that return UserProfile Modifier and Type Method Description static UserProfileUserEmailQueryResultHelper. getOrCreateUserProfile(IEntityContext ec, UserEmailQueryResult result, Locale locale) -
Uses of UserProfile in de.xima.fc.handler.entity
-
Uses of UserProfile in de.xima.fc.handler.interfaces.entity
Methods in de.xima.fc.handler.interfaces.entity that return UserProfile Modifier and Type Method Description UserProfileIUserProfileHandler. acceptDirectClientAuthorization(UserContext uc, UserProfile profile, DirectClientAuthorization authorization)Adds the given client authorization to the given profile and accepts it.UserProfileIUserProfileHandler. addDirectClientAuthorization(UserContext uc, UserProfile userProfile, DirectClientAuthorization authorization)Adds the given client authorizations to the user profile.UserProfileIUserProfileHandler. getById(UserContext uc, Long id)Reads the entity with the given ID.UserProfileIUserProfileHandler. getByLoginId(UserContext uc, String loginId)Finds the user profile by the given login ID.UserProfileIUserProfileHandler. getByUserName(UserContext uc, String userName)Finds the user profile with the given user nameUserProfileIUserProfileHandler. getByUserProfile(UserContext uc, org.pac4j.core.profile.UserProfile pac4jProfile)Finds the formcycle user profile for the given pac4j profile.UserProfileIUserProfileHandler. getByUuid(UserContext uc, String uuid)Finds the user profile with the given UUID.UserProfileIUserProfileHandler. getByUuid(UserContext uc, UUID uuid)Finds the user credentials with the given UUID.UserProfileIUserProfileHandler. getByVerifiedCallback(UserContext uc, String identifier, String clientName)Finds the user profile by the given callback information.UserProfileIUserProfileHandler. getByVerifiedEmailAddress(UserContext uc, String email)Finds the user profile with the given verified email address.UserProfileIUserProfileHandler. getByVerifiedPrimaryEmailAddress(UserContext uc, String email)Finds the user profile with the given verified primary email address.@NotNull UserProfileIUserProfileHandler. mergeUserProfiles(UserContext uc, UserProfile main, UserProfile toBeMerged)Merges the a profile into another.UserProfileIUserProfileHandler. update(UserContext uc, UserProfile entity)Updates the given user profile and returns the updated entity.Methods in de.xima.fc.handler.interfaces.entity with parameters of type UserProfile Modifier and Type Method Description UserProfileIUserProfileHandler. acceptDirectClientAuthorization(UserContext uc, UserProfile profile, DirectClientAuthorization authorization)Adds the given client authorization to the given profile and accepts it.UserProfileIUserProfileHandler. addDirectClientAuthorization(UserContext uc, UserProfile userProfile, DirectClientAuthorization authorization)Adds the given client authorizations to the user profile.booleanIUserProfileHandler. canBeDeleted(UserContext uc, UserProfile profile)Checks whether or not the user profile can be deleted.@NotBlank StringIUserProfileHandler. findUniqueUserName(UserContext uc, String candidate, UserProfile exclude)Finds a unique user name for the given candidate.List<DirectClientAuthorization>IDirectClientAuthorizationHandler. getUnacceptedClientInvitations(UserContext uc, UserProfile userProfile)Returns the direct client authorizations for the given user profile that have not yet been accepted.booleanIDirectClientAuthorizationHandler. hasUnacceptedClientInvitations(UserContext uc, UserProfile userProfile)Checks whether the given user profile has unaccepted client invitations.@NotNull UserProfileIUserProfileHandler. mergeUserProfiles(UserContext uc, UserProfile main, UserProfile toBeMerged)Merges the a profile into another.UserProfileIUserProfileHandler. update(UserContext uc, UserProfile entity)Updates the given user profile and returns the updated entity. -
Uses of UserProfile in de.xima.fc.handler.interfaces.system
Methods in de.xima.fc.handler.interfaces.system with parameters of type UserProfile Modifier and Type Method Description booleanIMailHandler. sendUserCredentialsResetMail(UserContext uc, UserProfile profile, String baseUrl, String verifiedTargetEmailAddress)Sends a mail with a user credentials set/reset link.booleanIMailHandler. sendUserProfileDeleteRequestMail(UserContext uc, UserProfile userProfile, String baseUrl)Sends a mail with a user profile delete request containing a link to delete the user profile.booleanIMailHandler. sendUserProfileMergeRequestMail(UserContext uc, UserProfile userProfile, UserProfile toBeMerged, String baseUrl)Sends a mail with a user profile merge link.booleanIMailHandler. sendUserProfileWelcomeMail(UserContext uc, UserProfile userProfile, String baseUrl)Sends an email to the primary email address of the user welcoming them and informing them that their profile has been created. -
Uses of UserProfile in de.xima.fc.handler.system
Methods in de.xima.fc.handler.system with parameters of type UserProfile Modifier and Type Method Description booleanMailHandler. sendUserCredentialsResetMail(UserContext uc, UserProfile profile, String baseUrl, String verifiedTargetEmailAddress)booleanMailHandler. sendUserProfileDeleteRequestMail(UserContext uc, UserProfile userProfile, String baseUrl)booleanMailHandler. sendUserProfileMergeRequestMail(UserContext uc, UserProfile userProfile, UserProfile toBeMerged, String baseUrl)booleanMailHandler. sendUserProfileWelcomeMail(UserContext uc, UserProfile userProfile, String baseUrl) -
Uses of UserProfile in de.xima.fc.helper
Methods in de.xima.fc.helper with parameters of type UserProfile Modifier and Type Method Description static booleanUserProfileHelper. updateSystemPermissions(UserProfile profile, LicenseAccess licenseAccess)Updates the system permissions of a system admin user profile based on the system license. -
Uses of UserProfile in de.xima.fc.inbox.model.messages
Methods in de.xima.fc.inbox.model.messages that return UserProfile Modifier and Type Method Description UserProfileMessageViewModel. getSenderUserProfile()Constructors in de.xima.fc.inbox.model.messages with parameters of type UserProfile Constructor Description MessageViewModel(String messageContent, Instant messageTimestamp, String uploadRequestUuid, List<UploadResponseViewModel> uploadResponses, String senderContext, String senderName, String senderAuthRef, UserProfile senderUserProfile) -
Uses of UserProfile in de.xima.fc.interfaces.user
Methods in de.xima.fc.interfaces.user that return UserProfile Modifier and Type Method Description UserProfileIUser. getProfile() -
Uses of UserProfile in de.xima.fc.mail.utils
Methods in de.xima.fc.mail.utils with parameters of type UserProfile Modifier and Type Method Description static booleanUserMailUtil. sendUserCredentialsResetMail(IEntityContext ec, UserProfile profile, String baseUrl)static booleanUserMailUtil. sendUserCredentialsResetMail(IEntityContext ec, UserProfile profile, String baseUrl, String verifiedTargetEmailAddress)static booleanUserMailUtil. sendUserProfileDeleteRequestMail(IEntityContext ec, UserProfile userProfile, String baseUrl)static booleanUserMailUtil. sendUserProfileMergeRequestMail(IEntityContext ec, UserProfile userProfile, UserProfile toBeMerged, String baseUrl)static booleanUserMailUtil. sendUserProfileWelcomeMail(IEntityContext ec, UserProfile userProfile, String baseUrl)Sends an email to the primary email address of the user welcoming them and informing them that their profile has been created. -
Uses of UserProfile in de.xima.fc.security.cache
Methods in de.xima.fc.security.cache with parameters of type UserProfile Modifier and Type Method Description static ELoginStateLoginAttemptHelper. checkLoginAttempts(UserProfile profile)static EPasswordResetStatePasswordResetAttemptHelper. checkPasswordResetAttempts(UserProfile profile)static voidLoginAttemptHelper. removeLoginAttempts(UserProfile profile)static voidPasswordResetAttemptHelper. removePasswordResetAttempts(UserProfile profile) -
Uses of UserProfile in de.xima.fc.security.helper
Methods in de.xima.fc.security.helper that return UserProfile Modifier and Type Method Description static UserProfileSecurityProfileHelper. createUserProfile(org.pac4j.core.profile.UserProfile pac4jProfile, Locale locale)static UserProfileSecurityProfileHelper. getNewUserProfile(org.pac4j.core.profile.UserProfile pac4jProfile)static UserProfileSecurityProfileHelper. getUserProfile(org.pac4j.core.profile.UserProfile profile)static UserProfileSecurityProfileHelper. readUserProfileByVerifiedEmail(String emailAddress)Methods in de.xima.fc.security.helper with parameters of type UserProfile Modifier and Type Method Description static voidSecurityProfileHelper. addPicture(org.pac4j.core.profile.UserProfile pac4jProfile, UserProfile userProfile)static org.pac4j.core.profile.UserProfileSecurityProfileHelper. getSystemUserProfile(UserProfile userProfile) -
Uses of UserProfile in de.xima.fc.security.interfaces.logic
Methods in de.xima.fc.security.interfaces.logic that return UserProfile Modifier and Type Method Description UserProfileIUserProfileTask. getUserProfile() -
Uses of UserProfile in de.xima.fc.security.user
Methods in de.xima.fc.security.user with parameters of type UserProfile Modifier and Type Method Description booleanSessionUserManager. isMe(UserProfile profile) -
Uses of UserProfile in de.xima.fc.testhelper
Methods in de.xima.fc.testhelper that return UserProfile Modifier and Type Method Description static UserProfileEntityDummyFactory. dummyUserProfile(String firstName, String lastName)static UserProfileEntityDummyFactory. dummyUserProfile(String userName, String firstName, String lastName)static UserProfileEntityDummyFactory. dummyUserProfile(String userName, String firstName, String lastName, String email, String password)Methods in de.xima.fc.testhelper with parameters of type UserProfile Modifier and Type Method Description static DirectClientAuthorizationEntityDummyFactory. dummyDirectClientAuthorization(UserProfile profile, Mandant client, boolean accepted, Rolle... roles)static UserIdentityEntityDummyFactory. dummyUserIdentity(IClientDescriptor client, String identifier, UserProfile profile)static org.pac4j.core.profile.UserProfileProfileHelper. toPac4jProfile(UserProfile userProfile)static IUserProfileHelper. toUser(UserProfile userProfile) -
Uses of UserProfile in de.xima.fc.user
Methods in de.xima.fc.user that return UserProfile Modifier and Type Method Description UserProfileVirtualUser. getProfile()Methods in de.xima.fc.user with parameters of type UserProfile Modifier and Type Method Description static VirtualUser.BuilderVirtualUser. builder(UserProfile userProfile)VirtualUser.BuilderVirtualUser.Builder. withUserProfile(UserProfile userProfile) -
Uses of UserProfile in de.xima.fc.utils
Methods in de.xima.fc.utils that return UserProfile Modifier and Type Method Description static UserProfileUserMgmtUtils. getUserProfileFromAuthenticationAttribute(org.pac4j.core.profile.UserProfile pac4jProfile)Gets the formcycle profile if it has been set in the authentication attributes of the given pac4j profile.Methods in de.xima.fc.utils with parameters of type UserProfile Modifier and Type Method Description static booleanUserMgmtUtils. isClientAdmin(UserProfile profile, Mandant client)Returns true if given profile has a role of a MANDANT_ADMINstatic booleanUserMgmtUtils. isSystemAdmin(UserProfile profile)Checks if the user of the given profile is a system admin.static booleanUserMgmtUtils. isUser(UserProfile profile, IUser user)Checks whether the given user profile is the user profile of the given user. -
Uses of UserProfile in de.xima.fc.workflow.processor.value.common
Methods in de.xima.fc.workflow.processor.value.common with parameters of type UserProfile Modifier and Type Method Description static Map<String,Object>UserDataDescriptor. valueUserData(String userReference, UserProfile profile)Creates a value that conforms to theUserDataDescriptorvalue descriptor, using the data form the given user profile.static Map<String,Object>UserDataDescriptor. valueUserData(String userReference, UserProfile userProfile, Iterable<FormRecordSubmission> submissions)Creates a value that conforms to theUserDataDescriptorvalue descriptor from the given universal user reference, by resolving the reference against the given list user profiles and form record submissions.static Map<String,Object>UserProfileDescriptor. valueUserProfile(UserProfile userProfile)Creates a value that conforms to theUserProfileDescriptorvalue descriptor.static Map<String,Object>UserProfileDescriptor. valueUserProfile(UserProfile userProfile, List<UserEmail> emails)Creates a value that conforms to theUserProfileDescriptorvalue descriptor.
-