Modifier and Type | Method and Description |
---|---|
SecurityCode |
SecurityCodeManagement.findByCode(String code)
Find the security code by the code value.
|
Modifier and Type | Method and Description |
---|---|
void |
SecurityCodeManagement.deleteAllCodesByUser(Long userId,
Class<? extends SecurityCode> clazz)
Delete all codes of the given user.
|
<T> T |
SecurityCodeManagement.findByCode(String code,
Converter<SecurityCode,T> converter)
Find the security code by the code value and convert it.
|
Modifier and Type | Method and Description |
---|---|
String |
SecurityCodeMailMessage.getSecurityCodeConfirmationLink(SecurityCode securityCode)
Get the link for confirmation of the security code.
|
String |
SecurityCodeMailMessage.getSecurityCodeConfirmationLink(SecurityCode securityCode,
String query) |
Constructor and Description |
---|
ConfirmUserMailMessage(User userToConfirm,
SecurityCode securityCode,
UserManagement.RegistrationType type)
Construct a new mail message for user confirmation
|
InviteUserToClientMailMessage(User inviter,
Locale locale,
String recipientEmail,
SecurityCode code)
Construct an invitation mail message.
|
Modifier and Type | Method and Description |
---|---|
SecurityCode |
SecurityCodeManagementBase.findByCode(String code) |
protected SecurityCode |
SecurityCodeManagementImpl.handleFindByCode(String code) |
protected abstract SecurityCode |
SecurityCodeManagementBase.handleFindByCode(String code)
Performs the core logic for
SecurityCodeManagementBase.findByCode(String) |
Modifier and Type | Method and Description |
---|---|
void |
SecurityCodeManagementBase.deleteAllCodesByUser(Long userId,
Class<? extends SecurityCode> clazz) |
<T> T |
SecurityCodeManagementBase.findByCode(String code,
Converter<SecurityCode,T> converter) |
protected void |
SecurityCodeManagementImpl.handleDeleteAllCodesByUSer(Long userId,
Class<? extends SecurityCode> clazz) |
protected abstract void |
SecurityCodeManagementBase.handleDeleteAllCodesByUSer(Long userId,
Class<? extends SecurityCode> clazz)
Performs the core logic for
#deleteAllCodesByUSer(Long, Class extends
SecurityCode>) |
protected <T> T |
SecurityCodeManagementImpl.handleFindByCode(String code,
Converter<SecurityCode,T> converter) |
protected abstract <T> T |
SecurityCodeManagementBase.handleFindByCode(String code,
Converter<SecurityCode,T> converter) |
Modifier and Type | Class and Description |
---|---|
class |
SecurityCodeImpl |
Modifier and Type | Method and Description |
---|---|
static SecurityCode |
SecurityCode.Factory.newInstance()
Constructs a new instance of
SecurityCode . |
static SecurityCode |
SecurityCode.Factory.newInstance(String code,
SecurityCodeAction action,
Timestamp creatingDate)
Constructs a new instance of
SecurityCode , taking all required and/or read-only
properties as arguments. |
static SecurityCode |
SecurityCode.Factory.newInstance(String code,
SecurityCodeAction action,
Timestamp creatingDate,
User kenmeiUser)
Constructs a new instance of
SecurityCode , taking all possible properties (except
the identifier(s))as arguments. |
Modifier and Type | Class and Description |
---|---|
class |
EmailSecurityCode
Code for confirming an email address
|
class |
EmailSecurityCodeImpl |
class |
ForgottenPasswordSecurityCode |
class |
ForgottenPasswordSecurityCodeImpl |
class |
InviteUserToBlogSecurityCode |
class |
InviteUserToBlogSecurityCodeImpl |
class |
InviteUserToClientSecurityCode |
class |
InviteUserToClientSecurityCodeImpl |
class |
UnlockUserSecurityCode
A security code for unlocking a locked user
|
class |
UnlockUserSecurityCodeImpl |
class |
UserSecurityCode
Extends the SecurityCode class by a Tagging.
|
class |
UserSecurityCodeImpl |
Modifier and Type | Method and Description |
---|---|
SecurityCode |
SecurityCodeDaoBase.create(SecurityCode securityCode) |
SecurityCode |
SecurityCodeDao.create(SecurityCode securityCode)
Creates an instance of SecurityCode and adds it
to the persistent store.
|
SecurityCode |
SecurityCodeDaoBase.findByCode(String securityCode) |
SecurityCode |
SecurityCodeDao.findByCode(String securityCode) |
protected SecurityCode |
SecurityCodeDaoImpl.handleFindByCode(String securityCode)
Performs the core logic for
SecurityCodeDaoBase.findByCode(String) |
protected abstract SecurityCode |
SecurityCodeDaoBase.handleFindByCode(String securityCode)
Performs the core logic for
SecurityCodeDaoBase.findByCode(String) |
SecurityCode |
SecurityCodeDaoBase.load(Long id) |
SecurityCode |
SecurityCodeDao.load(Long id)
Loads an instance of SecurityCode from the
persistent store.
|
Modifier and Type | Method and Description |
---|---|
Collection<SecurityCode> |
SecurityCodeDaoBase.create(Collection<SecurityCode> entities) |
Collection<SecurityCode> |
SecurityCodeDao.create(Collection<SecurityCode> entities)
Creates a new instance of SecurityCode and adds
from the passed in
entities collection |
Collection<SecurityCode> |
SecurityCodeDaoBase.create(int transform,
Collection<SecurityCode> entities) |
Collection<SecurityCode> |
SecurityCodeDaoBase.loadAll() |
Collection<SecurityCode> |
SecurityCodeDao.loadAll()
Loads all entities of type
SecurityCode . |
Modifier and Type | Method and Description |
---|---|
Object |
SecurityCodeDaoBase.create(int transform,
SecurityCode securityCode) |
Object |
SecurityCodeDao.create(int transform,
SecurityCode securityCode)
Does the same thing as
SecurityCodeDao.create(com.communote.server.model.security.SecurityCode) with
an additional flag called transform . |
SecurityCode |
SecurityCodeDaoBase.create(SecurityCode securityCode) |
SecurityCode |
SecurityCodeDao.create(SecurityCode securityCode)
Creates an instance of SecurityCode and adds it
to the persistent store.
|
void |
SecurityCodeDaoBase.evict(SecurityCode entity)
Evicts (removes) the entity from the hibernate cache
|
void |
SecurityCodeDao.evict(SecurityCode entity)
Evicts (removes) the entity from the hibernate cache
|
void |
SecurityCodeDaoBase.remove(SecurityCode securityCode) |
void |
SecurityCodeDao.remove(SecurityCode securityCode)
Removes the instance of SecurityCode from the
persistent store.
|
protected Object |
SecurityCodeDaoBase.transformEntity(int transform,
SecurityCode entity)
Allows transformation of entities into value objects (or something else for that matter),
when the
transform flag is set to one of the constants defined in
SecurityCodeDao , please note that the SecurityCodeDao.TRANSFORM_NONE constant denotes
no transformation, so the entity itself will be returned. |
void |
SecurityCodeDaoBase.update(SecurityCode securityCode) |
void |
SecurityCodeDao.update(SecurityCode securityCode)
Updates the
securityCode instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<SecurityCode> |
SecurityCodeDaoBase.create(Collection<SecurityCode> entities) |
Collection<SecurityCode> |
SecurityCodeDao.create(Collection<SecurityCode> entities)
Creates a new instance of SecurityCode and adds
from the passed in
entities collection |
Collection<SecurityCode> |
SecurityCodeDaoBase.create(int transform,
Collection<SecurityCode> entities) |
Collection<?> |
SecurityCodeDao.create(int transform,
Collection<SecurityCode> entities)
Does the same thing as
SecurityCodeDao.create(com.communote.server.model.security.SecurityCode) with
an additional flag called transform . |
void |
SecurityCodeDaoBase.deleteAllCodesByUser(Long userId,
Class<? extends SecurityCode> clazz) |
void |
SecurityCodeDao.deleteAllCodesByUser(Long userId,
Class<? extends SecurityCode> clazz) |
protected void |
SecurityCodeDaoImpl.handleDeleteAllCodesByUser(Long userId,
Class<? extends SecurityCode> clazz)
Performs the core logic for
SecurityCodeDaoBase.deleteAllCodesByUser(Long, Class<? extends
SecurityCode>) |
protected abstract void |
SecurityCodeDaoBase.handleDeleteAllCodesByUser(Long userId,
Class<? extends SecurityCode> clazz)
Performs the core logic for
SecurityCodeDaoBase.deleteAllCodesByUser(Long, Class<? extends
SecurityCode>) |
void |
SecurityCodeDaoBase.remove(Collection<SecurityCode> entities) |
void |
SecurityCodeDao.remove(Collection<SecurityCode> entities)
Removes all entities in the given
entities |
void |
SecurityCodeDaoBase.update(Collection<SecurityCode> entities) |
void |
SecurityCodeDao.update(Collection<SecurityCode> entities)
Updates all instances in the
entities collection in the persistent store. |
Modifier and Type | Interface and Description |
---|---|
interface |
InviteSecurityCodeDao<T extends SecurityCode> |
Modifier and Type | Method and Description |
---|---|
abstract SecurityCodeConfirmationResult |
SecurityCodeConfirmationHandler.confirm(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
SecurityCode code)
Confirm the code.
|
Copyright © 2019 Communote team. All rights reserved.