Package | Description |
---|---|
com.communote.server.core.user | |
com.communote.server.model.user | |
com.communote.server.persistence.user |
Modifier and Type | Method and Description |
---|---|
UserProfile |
UserProfileManagementBase.findUserProfileByUserId(Long userId) |
UserProfile |
UserProfileManagement.findUserProfileByUserId(Long userId)
Finds the user profile to a user.
|
protected UserProfile |
UserProfileManagementImpl.handleFindUserProfileByUserId(Long userId)
Performs the core logic for
UserProfileManagementBase.findUserProfileByUserId(Long) |
protected abstract UserProfile |
UserProfileManagementBase.handleFindUserProfileByUserId(Long userId)
Performs the core logic for
UserProfileManagementBase.findUserProfileByUserId(Long) |
Modifier and Type | Method and Description |
---|---|
UserProfile |
User.getProfile() |
static UserProfile |
UserProfile.Factory.newInstance()
Constructs a new instance of
UserProfile . |
static UserProfile |
UserProfile.Factory.newInstance(String lastName,
String salutation,
String position,
String company,
String firstName,
Timestamp lastModificationDate,
Timestamp lastPhotoModificationDate,
String timeZoneId,
UserImage smallImage,
Contact contact,
UserImage mediumImage,
UserImage largeImage,
NotificationConfig notificationConfig)
Constructs a new instance of
UserProfile , taking
all possible properties (except the identifier(s))as arguments. |
static UserProfile |
UserProfile.Factory.newInstance(Timestamp lastModificationDate,
NotificationConfig notificationConfig)
Constructs a new instance of
UserProfile , taking
all required and/or read-only properties as arguments. |
Modifier and Type | Method and Description |
---|---|
static User |
User.Factory.newInstance(String email,
String languageCode,
UserStatus status,
boolean termsAccepted,
boolean reminderMailSent,
Timestamp statusChanged,
UserProfile profile)
Constructs a new instance of
User , taking all required and/or read-only
properties as arguments. |
void |
User.setProfile(UserProfile profile) |
Modifier and Type | Method and Description |
---|---|
UserProfile |
UserProfileDaoBase.create(UserProfile kenmeiUserProfile) |
UserProfile |
UserProfileDao.create(UserProfile kenmeiUserProfile)
Creates an instance of com.communote.server.persistence.user.KenmeiUserProfile and adds it to
the persistent store.
|
UserProfile |
UserProfileDaoBase.load(Long id) |
UserProfile |
UserProfileDao.load(Long id)
Loads an instance of com.communote.server.persistence.user.KenmeiUserProfile from the
persistent store.
|
UserProfile |
UserProfileDaoImpl.userProfileVOToEntity(UserProfileVO userProfileVO)
Converts an instance of type
UserProfileVO to
this DAO's entity. |
UserProfile |
UserProfileDao.userProfileVOToEntity(UserProfileVO kenmeiUserProfileVO)
Converts an instance of type
UserProfileVO to
this DAO's entity. |
Modifier and Type | Method and Description |
---|---|
Collection<UserProfile> |
UserProfileDaoBase.create(Collection<UserProfile> entities) |
Collection<UserProfile> |
UserProfileDao.create(Collection<UserProfile> entities)
Creates a new instance of com.communote.server.persistence.user.KenmeiUserProfile and adds
from the passed in
entities collection |
Collection<UserProfile> |
UserProfileDaoBase.create(int transform,
Collection<UserProfile> entities) |
Collection<UserProfile> |
UserProfileDaoBase.loadAll() |
Collection<UserProfile> |
UserProfileDao.loadAll()
Loads all entities of type
UserProfile . |
Modifier and Type | Method and Description |
---|---|
Object |
UserProfileDaoBase.create(int transform,
UserProfile kenmeiUserProfile) |
Object |
UserProfileDao.create(int transform,
UserProfile kenmeiUserProfile)
Does the same thing as
UserProfileDao.create(com.communote.server.model.user.UserProfile) with an
additional flag called transform . |
UserProfile |
UserProfileDaoBase.create(UserProfile kenmeiUserProfile) |
UserProfile |
UserProfileDao.create(UserProfile kenmeiUserProfile)
Creates an instance of com.communote.server.persistence.user.KenmeiUserProfile and adds it to
the persistent store.
|
void |
UserProfileDaoBase.evict(UserProfile entity)
Evicts (removes) the entity from the hibernate cache
|
void |
UserProfileDao.evict(UserProfile entity)
Evicts (removes) the entity from the hibernate cache
|
void |
UserProfileDaoBase.remove(UserProfile kenmeiUserProfile) |
void |
UserProfileDao.remove(UserProfile kenmeiUserProfile)
Removes the instance of com.communote.server.persistence.user.KenmeiUserProfile from the
persistent store.
|
UserProfileVO |
UserProfileDaoBase.toUserProfileVO(UserProfile entity) |
UserProfileVO |
UserProfileDao.toUserProfileVO(UserProfile entity)
Converts this DAO's entity to an object of type
UserProfileVO . |
void |
UserProfileDaoImpl.toUserProfileVO(UserProfile source,
UserProfileVO target)
Copies the fields of the specified entity to the target value object.
|
void |
UserProfileDaoBase.toUserProfileVO(UserProfile source,
UserProfileVO target) |
void |
UserProfileDao.toUserProfileVO(UserProfile source,
UserProfileVO target)
Copies the fields of the specified entity to the target value object.
|
protected Object |
UserProfileDaoBase.transformEntity(int transform,
UserProfile 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
com.communote.server.persistence.user.UserProfileDao , please note that the
UserProfileDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself will be
returned. |
void |
UserProfileDaoBase.update(UserProfile kenmeiUserProfile) |
void |
UserProfileDao.update(UserProfile kenmeiUserProfile)
Updates the
kenmeiUserProfile instance in the persistent store. |
void |
UserProfileDaoImpl.userProfileVOToEntity(UserProfileVO source,
UserProfile target,
boolean copyIfNull)
Copies the fields of
UserProfileVO to the
specified entity. |
void |
UserProfileDaoBase.userProfileVOToEntity(UserProfileVO source,
UserProfile target,
boolean copyIfNull) |
void |
UserProfileDao.userProfileVOToEntity(UserProfileVO source,
UserProfile target,
boolean copyIfNull)
Copies the fields of
UserProfileVO to the
specified entity. |
Modifier and Type | Method and Description |
---|---|
Collection<UserProfile> |
UserProfileDaoBase.create(Collection<UserProfile> entities) |
Collection<UserProfile> |
UserProfileDao.create(Collection<UserProfile> entities)
Creates a new instance of com.communote.server.persistence.user.KenmeiUserProfile and adds
from the passed in
entities collection |
Collection<UserProfile> |
UserProfileDaoBase.create(int transform,
Collection<UserProfile> entities) |
Collection<?> |
UserProfileDao.create(int transform,
Collection<UserProfile> entities)
Does the same thing as
UserProfileDao.create(com.communote.server.model.user.UserProfile) with an
additional flag called transform . |
void |
UserProfileDaoBase.remove(Collection<UserProfile> entities) |
void |
UserProfileDao.remove(Collection<UserProfile> entities)
Removes all entities in the given
entities |
void |
UserProfileDaoBase.update(Collection<UserProfile> entities) |
void |
UserProfileDao.update(Collection<UserProfile> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2019 Communote team. All rights reserved.