Uses of Class
de.xima.fc.entities.UserEmail
-
Packages that use UserEmail Package Description de.xima.fc.api.entity Package for the API access of the model classes.de.xima.fc.api.system Package for API access to system configuration.de.xima.fc.dao.impl de.xima.fc.dao.interfaces de.xima.fc.entities Package für Datenbankentitätende.xima.fc.gui.common.bean.profile de.xima.fc.handler.entity de.xima.fc.handler.interfaces.entity de.xima.fc.handler.interfaces.system de.xima.fc.handler.system de.xima.fc.mail.utils de.xima.fc.security.helper de.xima.fc.security.interfaces.logic de.xima.fc.workflow.processor.value.common -
-
Uses of UserEmail in de.xima.fc.api.entity
Methods in de.xima.fc.api.entity that return UserEmail Modifier and Type Method Description UserEmail
UserEmailAPI. getByVerifiedAddress(UserContext uc, String address)
Finds the verified user email entity with the given address.Methods in de.xima.fc.api.entity that return types with arguments of type UserEmail Modifier and Type Method Description List<UserEmail>
UserEmailAPI. getByAddress(UserContext uc, String address)
Finds the user email entities with the given address. -
Uses of UserEmail in de.xima.fc.api.system
Methods in de.xima.fc.api.system with parameters of type UserEmail Modifier and Type Method Description boolean
MailAPI. sendEmailVerificationMail(UserContext uc, UserEmail email, String baseUrl)
Sends a mail with a user email verification linkboolean
MailAPI. sendPrimaryEmailChangeMail(UserContext uc, UserEmail email, String baseUrl)
Sends a mail with a link to change the primary email of the user profile to theUserEmail
given. -
Uses of UserEmail in de.xima.fc.dao.impl
Methods in de.xima.fc.dao.impl that return UserEmail Modifier and Type Method Description UserEmail
UserEmailDao. getByVerifiedAddress(IEntityContext ec, String address)
Methods in de.xima.fc.dao.impl that return types with arguments of type UserEmail Modifier and Type Method Description List<UserEmail>
UserEmailDao. getByAddress(IEntityContext ec, String address)
protected IFCDaoActionHook<UserEmail>
UserEmailDao. getPreActionHook()
Methods in de.xima.fc.dao.impl with parameters of type UserEmail Modifier and Type Method Description void
UserEmailDao. assertUserEmail(IEntityContext ec, UserEmail email)
Set<de.xima.cmn.dao.interfaces.IEntity<Long>>
UserEmailDao. getEntityRefs(IEntityContext ec, UserEmail entity)
-
Uses of UserEmail in de.xima.fc.dao.interfaces
Methods in de.xima.fc.dao.interfaces that return UserEmail Modifier and Type Method Description UserEmail
IUserEmailDao. getByVerifiedAddress(IEntityContext ec, String address)
Finds the verified user email entity with the given address.Methods in de.xima.fc.dao.interfaces that return types with arguments of type UserEmail Modifier and Type Method Description List<UserEmail>
IUserEmailDao. getByAddress(IEntityContext ec, String address)
Finds the user email entities with the given address.Methods in de.xima.fc.dao.interfaces with parameters of type UserEmail Modifier and Type Method Description void
IUserEmailDao. assertUserEmail(IEntityContext ec, UserEmail email)
Checks if the user email can be persisted (create/update). -
Uses of UserEmail in de.xima.fc.entities
Methods in de.xima.fc.entities that return UserEmail Modifier and Type Method Description UserEmail
UserProfile. getEmail(String emailAddress)
UserEmail
UserProfile. getPrimaryEmail()
Methods in de.xima.fc.entities that return types with arguments of type UserEmail Modifier and Type Method Description List<UserEmail>
UserProfile. getEmails()
Methods in de.xima.fc.entities with parameters of type UserEmail Modifier and Type Method Description boolean
UserProfile. addEmail(UserEmail email)
void
UserProfile. setPrimaryEmail(UserEmail primaryEmail)
Method parameters in de.xima.fc.entities with type arguments of type UserEmail Modifier and Type Method Description void
UserProfile. setEmails(List<UserEmail> emails)
-
Uses of UserEmail in de.xima.fc.gui.common.bean.profile
Methods in de.xima.fc.gui.common.bean.profile that return types with arguments of type UserEmail Modifier and Type Method Description List<UserEmail>
UserEmailPanelBean. getOrderedUserEmails(UserProfile profile)
Methods in de.xima.fc.gui.common.bean.profile with parameters of type UserEmail Modifier and Type Method Description String
UserEmailPanelBean. getOriginMsg(UserEmail mail)
UserProfile
UserEmailPanelBean. getOtherProfileWithVerifedMail(UserEmail email)
boolean
UserEmailPanelBean. isPrimary(UserEmail email)
boolean
UserEmailPanelBean. isShowRemoveOption(UserEmail email)
void
UserEmailPanelBean. makeEmailPrimary(UserEmail email, Runnable profileUpdatedCallback)
void
UserEmailPanelBean. mergeProfilesByEmail(UserEmail email)
void
UserEmailPanelBean. removeEmail(UserEmail email, Runnable profileUpdatedCallback)
void
UserEmailPanelBean. sendEmailVerificationEmail(UserEmail email, Runnable profileUpdatedCallback)
void
UserEmailPanelBean. sendPrimaryEmailChangeRequestEmail(UserEmail email, Runnable profileUpdatedCallback)
void
UserEmailPanelBean. verifyEmail(UserEmail email, Runnable profileUpdatedCallback)
-
Uses of UserEmail in de.xima.fc.handler.entity
Methods in de.xima.fc.handler.entity that return UserEmail Modifier and Type Method Description UserEmail
UserEmailHandler. getByVerifiedAddress(UserContext uc, String address)
Methods in de.xima.fc.handler.entity that return types with arguments of type UserEmail Modifier and Type Method Description List<UserEmail>
UserEmailHandler. getByAddress(UserContext uc, String address)
-
Uses of UserEmail in de.xima.fc.handler.interfaces.entity
Methods in de.xima.fc.handler.interfaces.entity that return UserEmail Modifier and Type Method Description UserEmail
IUserEmailHandler. getByVerifiedAddress(UserContext uc, String address)
Finds the verified user email entity with the given address.Methods in de.xima.fc.handler.interfaces.entity that return types with arguments of type UserEmail Modifier and Type Method Description List<UserEmail>
IUserEmailHandler. getByAddress(UserContext uc, String address)
Finds the user email entities with the given address. -
Uses of UserEmail in de.xima.fc.handler.interfaces.system
Methods in de.xima.fc.handler.interfaces.system with parameters of type UserEmail Modifier and Type Method Description boolean
IMailHandler. sendEmailVerificationMail(UserContext uc, UserEmail email, String baseUrl)
Sends a mail with a user email verification linkboolean
IMailHandler. sendPrimaryEmailChangeMail(UserContext uc, UserEmail email, String baseUrl)
Sends a mail with a link to change the primary email of the user profile to theUserEmail
given. -
Uses of UserEmail in de.xima.fc.handler.system
Methods in de.xima.fc.handler.system with parameters of type UserEmail Modifier and Type Method Description boolean
MailHandler. sendEmailVerificationMail(UserContext uc, UserEmail email, String baseUrl)
boolean
MailHandler. sendPrimaryEmailChangeMail(UserContext uc, UserEmail email, String baseUrl)
-
Uses of UserEmail in de.xima.fc.mail.utils
Methods in de.xima.fc.mail.utils with parameters of type UserEmail Modifier and Type Method Description static boolean
UserMailUtil. sendEmailVerificationMail(IEntityContext ec, UserEmail email, String baseUrl)
static boolean
UserMailUtil. sendPrimaryEmailChangeMail(IEntityContext ec, UserEmail email, String baseUrl)
-
Uses of UserEmail in de.xima.fc.security.helper
Methods in de.xima.fc.security.helper with parameters of type UserEmail Modifier and Type Method Description static boolean
SecurityProfileHelper. shouldReIssueVerificationLink(UserEmail userEmail)
-
Uses of UserEmail in de.xima.fc.security.interfaces.logic
Methods in de.xima.fc.security.interfaces.logic that return UserEmail Modifier and Type Method Description UserEmail
IUserEmailTask. getUserEmail()
-
Uses of UserEmail in de.xima.fc.workflow.processor.value.common
Method parameters in de.xima.fc.workflow.processor.value.common with type arguments of type UserEmail Modifier and Type Method Description static Map<String,Object>
UserProfileDescriptor. valueUserProfile(UserProfile userProfile, List<UserEmail> emails)
Creates a value that conforms to theUserProfileDescriptor
value descriptor.
-